Advertisement
madidino

teza25-sub3-1

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