welel33t

figure

Mar 2nd, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int n;
  8.     cin >> n;
  9.  
  10.     for (int i = 1; i <= n; i++)
  11.     {
  12.         for (int j = 1; j <= i; j++)
  13.         {
  14.             if(i == n || i == 1)
  15.             {
  16.                 if(j == i) cout << "*";
  17.                 else cout << "* ";
  18.             }
  19.             else
  20.             {
  21.                 if(j == 1) cout << "* ";
  22.                 else if(j == i) cout << "*";
  23.                 else cout << ". ";
  24.             }
  25.         }
  26.         cout << endl;
  27.     }
  28.  
  29.     return 0;
  30. }
Add Comment
Please, Sign In to add comment