fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. const int MAX_SIZE = 10;
  5.  
  6. int main() {
  7. int n, currentElement, aux[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 >> currentElement;
  12. aux[j][i] = currentElement;
  13. }
  14. }
  15. for (int i = 1; i <= n; ++i) {
  16. for (int j = 1; j <= n; ++j) {
  17. cout << aux[i][j] << " ";
  18. }
  19. cout << "\n";
  20. }
  21. return 0;
  22. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty