Advertisement
Josif_tepe

Untitled

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