Guest User

Untitled

a guest
Jan 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. // made by crazymax
  4.  
  5. using namespace std;
  6.  
  7.  
  8. int main(){
  9. int num=0;
  10.  
  11. cout << "Enter your number:" <<endl;
  12. cin >> num;
  13.  
  14. if(num>0){
  15. for(int i=num;i>0;i--)
  16. {
  17.     int x=num;
  18.     while(x>0)
  19.     {
  20.         cout << "*";
  21.         x--;
  22.     }
  23.     cout << endl;
  24.     num--;
  25. }
  26. }
  27.  
  28. system("PAUSE");
  29. }
Add Comment
Please, Sign In to add comment