Advertisement
Spocoman

05. Square Frame

Sep 13th, 2023
647
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.78 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 = 0; i < n; i++) {
  11.         char angleChar = '|';
  12.         if (i == 0 || i == n - 1) {
  13.             angleChar = '+';
  14.         }
  15.         cout << angleChar;
  16.  
  17.         for (int j = 0; j < n - 2; j++) {
  18.             cout << " -";
  19.         }
  20.         cout << ' ' << angleChar << endl;
  21.     }
  22.  
  23.     return 0;
  24. }
  25.  
  26. РЕШЕНИЕ С ТЕРНАРЕН ОПЕРАТОР:
  27.  
  28. #include <iostream>
  29.  
  30. using namespace std;
  31.  
  32. int main() {
  33.  
  34.     int n;
  35.     cin >> n;
  36.  
  37.     for (int i = 0; i < n; i++) {
  38.         for (int j = 0; j < n; j++) {
  39.  
  40.             cout << (j == 0 || j == n - 1 ? (i == 0 || i == n - 1 ? "+ " : "| ") : "- ");
  41.         }
  42.         cout << endl;
  43.     }
  44.  
  45.     return 0;
  46. }
  47.  
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement