Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. cout << "* ";
  2.         for (int i = 0; i < 4; i++)
  3.             cout << " ";
  4.         for (int i = 0; i < 3; i++)
  5.             cout << "* ";
  6.         cout << endl;
  7.         for (int i = 0; i < 3; i++)
  8.         {
  9.             cout << "*";
  10.             for (int j = 0; j < 4; j++)
  11.                 cout << " ";
  12.             cout << "*";
  13.             cout << endl;
  14.         }
  15.         for (int i = 0; i < 6; i++)
  16.             cout << "* ";
  17.         cout << endl;
  18.         for (int i = 0; i < 3; i++)
  19.         {
  20.             for (int j = 0; j < 5; j++)
  21.                 cout << " ";
  22.             cout << "*";
  23.             for (int j = 0; j < 4; j++)
  24.                 cout << " ";
  25.             cout << "*";
  26.             cout << endl;
  27.         }
  28.  
  29.  
  30.         for (int i = 0; i < 3; i++)
  31.             cout << "* ";
  32.         for (int i = 0; i < 4; i++)
  33.             cout << " ";
  34.         cout << "* ";
  35.         cout << endl;
  36.         cout << endl;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement