Advertisement
sazid_iiuc

Untitled

Feb 7th, 2020
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int n;
  7.     cin>>n;
  8.     for(int i=n; i>0; i--)
  9.     {
  10.         for(int j=1; j<=i; j++)
  11.         {
  12.             cout<<"*\t";
  13.         }
  14.         cout<<endl;
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement