Advertisement
Josif_tepe

Untitled

Apr 2nd, 2021
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int n, m;
  7.     cin >> n >> m;
  8.     int matrica[n][m];
  9.     for(int i = 0; i < n; i += 1) {
  10.         for(int j = 0; j < m; j += 1) {
  11.             cin >> matrica[i][j];
  12.         }
  13.     }
  14.    
  15.     int x = 0, y = m - 1;
  16.     for(int i = 0; i < n; i++) {
  17.         cout << matrica[x][y] << " ";
  18.         x += 1;
  19.         y -= 1;
  20.     }
  21.    
  22.     return 0;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement