Guest User

Untitled

a guest
Feb 22nd, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main(void)
  4. {
  5. int N,i,j;
  6. cin>> N;
  7. for(i=0; i<N; i++){
  8. for(j = N-i; j<=N; j++)
  9. {
  10. cout<<"*";
  11. }
  12. cout<<endl;
  13. }
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment