Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. system("chcp 1250");
  8. int n, j, i=1,x;
  9.  
  10.  
  11. cout << "program wyœwietla * wg wzoru n= " << endl;
  12. cout << "podaj liczbe n= " << endl;
  13. cin >> n;
  14.  
  15. for(j=1;j<=n;j++)
  16. {
  17. for(x=1;x<=i;x++)
  18. {
  19. cout<<"*";
  20. }
  21. cout<<" Kobyla chuj \n";
  22.  
  23. i++;
  24. }
  25.  
  26. return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement