Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. // imie i nazwisko :)
  2. #include <cstdlib>
  3. #include <iostream>
  4. using namespace std;
  5. void funkcja(int v)
  6. { for(int i=1; i<=v; i++)
  7. {
  8. for(int j=1; j<=v-i; j++) cout<<" ";
  9. for(int m=v-i+2; m<=v+i; m++) cout<<"*";
  10. cout<<endl;
  11. }
  12. }
  13. int main ()
  14. { int n;
  15. cout<<"Podaj liczbe poziomow:";
  16. cin>>n;
  17. funkcja(n);
  18.  
  19. system ("PAUSE");
  20. return(0);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement