Advertisement
Josif_tepe

Untitled

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