Advertisement
K0Jan

Untitled

Mar 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int razmer = 0;
  8.  
  9. cout << "kakoj razmerchik: ";
  10. cin >> razmer;
  11.  
  12. for (int i = 0; i < razmer; i++)
  13. {
  14. for (int j = 1; j < razmer - i; j++)
  15. {
  16. cout << " " ;
  17. }
  18.  
  19. for (int j = razmer - 2 + i; j <= razmer; j++)
  20. {
  21. cout << "*";
  22. }
  23. cout << endl;
  24. }
  25. return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement