fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int MAX_SIZE = 10;
  5.  
  6. int main() {
  7. int n, mt[MAX_SIZE + 1][MAX_SIZE + 1], newMt[MAX_SIZE + 1][MAX_SIZE + 1];
  8. cin >> n;
  9. for (int i = 1; i <= n; ++i) {
  10. for (int j = 1; j <= n; ++j) {
  11. cin >> mt[i][j];
  12. newMt[j][i] = mt[i][j];
  13. }
  14. }
  15.  
  16. for (int i = 1; i <= n; ++i) {
  17. for (int j = 1; j <= n; ++j) {
  18. cout << newMt[i][j] <<" ";
  19. }
  20. cout << "\n";
  21. }
  22.  
  23.  
  24. return 0;
  25. }
Success #stdin #stdout 0.01s 5288KB
stdin
3
9 2 6
6 3 4
6 1 4
stdout
9 6 6 
2 3 1 
6 4 4