Advertisement
Spocoman

09. House

Sep 14th, 2023 (edited)
603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.72 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     int n;
  7.     cin >> n;
  8.  
  9.     for (int i = 1; i <= (n + 1) / 2; i++) {
  10.         for (int j = 0; j < (n + 1) / 2 - i; j++) {
  11.             cout << "-";
  12.         }
  13.         if (n % 2 == 1) {
  14.             cout << "*";
  15.         }
  16.         else {
  17.             cout << "**";
  18.         }
  19.  
  20.         for (int k = 1; k < i; k++){
  21.             cout << "**";
  22.         }
  23.  
  24.         for (int j = 0; j < (n + 1) / 2 - i; j++) {
  25.             cout << "-";
  26.         }
  27.         cout << endl;
  28.     }
  29.  
  30.     for (int i = 0; i < n / 2; i++) {
  31.         cout << "|";
  32.         for (int x = 0; x < n - 2; x++) {
  33.             cout << "*";
  34.         }
  35.         cout << "|" << endl;
  36.     }
  37.  
  38.     return 0;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement