Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8. int n, i;
  9.  
  10. cin >> n;
  11.  
  12. while (i<n)
  13. {
  14. for(int j=0; j<=i; j++)
  15. {
  16. if(j%2==1){cout << "+";}
  17. else{cout << "*";}
  18. }
  19.  
  20. cout << endl;
  21. i++;
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement