Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <iostream>
  2. #include <stdio.h>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  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){printf("+");}
  17. else{printf("*");}
  18. }
  19. cout << endl;
  20. i++;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement