Advertisement
Spocoman

Sublime Logo

Sep 24th, 2023 (edited)
601
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.64 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. string repeat(char s, int n) {
  6.     string result;
  7.  
  8.     for (int i = 0; i < n; i++)
  9.     {
  10.         result += s;
  11.     }
  12.     return result;
  13. }
  14.  
  15. int main() {
  16.     int n;
  17.     cin >> n;
  18.  
  19.     int spaces = 2 * n - 2;
  20.     int stars = 2;
  21.  
  22.     for (int row = 0; row < n; row++) {
  23.         cout << repeat(' ', spaces)
  24.             << repeat('*', stars) << endl;
  25.         spaces -= 2;
  26.         stars += 2;
  27.     }
  28.  
  29.     spaces = 2;
  30.     stars = 2 * n - 2;
  31.  
  32.     for (int row = 0; row < 2; row++) {
  33.         cout << repeat('*', stars)
  34.             << repeat(' ', spaces) << endl;
  35.         spaces += 2;
  36.         stars -= 2;
  37.     }
  38.  
  39.     spaces = 2;
  40.     stars = 2 * n - 2;
  41.  
  42.     for (int row = 0; row < 2; row++) {
  43.         cout << repeat('*', stars)
  44.             << repeat(' ', spaces) << endl;
  45.         if (spaces > 0 && stars > 0) {
  46.             spaces -= 2;
  47.             stars += 2;
  48.         }
  49.     }
  50.  
  51.     spaces = 2;
  52.     stars = 2 * n - 2;
  53.  
  54.     for (int row = 0; row < 2; row++) {
  55.         cout << repeat(' ', spaces)
  56.             << repeat('*', stars) << endl;
  57.         spaces += 2;
  58.         stars -= 2;
  59.     }
  60.  
  61.     spaces = 2;
  62.     stars = 2 * n - 2;
  63.  
  64.     for (int row = 0; row < 2; row++) {
  65.         cout << repeat(' ', spaces)
  66.             << repeat('*', stars) << endl;
  67.         if (spaces > 0 && stars > 0) {
  68.             spaces -= 2;
  69.             stars += 2;
  70.         }
  71.     }
  72.  
  73.     spaces = 2;
  74.     stars = 2 * n - 2;
  75.  
  76.     for (int row = 0; row < n; row++) {
  77.         cout << repeat('*', stars)
  78.             << repeat(' ', spaces) << endl;
  79.         spaces += 2;
  80.         stars -= 2;
  81.     }
  82.  
  83.     return 0;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement