Guest User

Untitled

a guest
Apr 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class Beispiel{
  2.  
  3. public static void main(String[] args) {
  4.  
  5. public static int fakulIter(int a){
  6. int b = 1;
  7. for (int c = 1;c <= a;c++) {
  8. b *= c;
  9. }
  10. return b;
  11. }
  12.  
  13. public static int fakulRek(int a) {
  14. if (a == 0) return 1;
  15. return a * fakulRek(a - 1);
  16. }
  17.  
  18. }
  19. }
Add Comment
Please, Sign In to add comment