Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. void gwiazdki(int n)
  2. {
  3. if (n <= 0)
  4. putchar('\n');
  5. else
  6. {
  7. putchar('*');
  8. gwiazdki(n - 1);
  9. }
  10. }
  11.  
  12.  
  13. // Malejacy trojkat
  14. void trojkat1(int n)
  15. {
  16. if (n > 0)
  17. {
  18. gwiazdki(n);
  19. t1(n - 1);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement