Guest User

Untitled

a guest
Feb 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. n=3;
  2. m=2;
  3. func(int n, int m)
  4. {
  5. for(int i=1; i<=m; i++)
  6. {
  7. if(n>1)
  8. {
  9. recLoop(n-1);
  10. }
  11. }
  12. }
  13.  
  14. n=3;
  15. func(int n)
  16. {
  17. if(n>1)
  18. recLoop(n-1);
  19. }
Add Comment
Please, Sign In to add comment