Guest User

Untitled

a guest
Dec 16th, 2018
93
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 Recursion
  2. {
  3.  
  4. public static void main(String[] args)
  5. {
  6. f(3);
  7.  
  8. }
  9.  
  10. public static void f(int x)
  11. {
  12. if(x>0)
  13. {
  14. System.out.println(x + "top");
  15. f(x-1);
  16. System.out.println(x + "bottom");
  17. f(x-1);
  18. }
  19. System.out.println("bert");
  20. }
  21. }
Add Comment
Please, Sign In to add comment