fork download
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4.  
  5. int main() {
  6. const int n = 5;
  7.  
  8. int a[n][n];
  9.  
  10.  
  11. ifstream fin("text.txt"); // открыли файл для чтения
  12. for (int j=0; j< n; j++){
  13. for (int i =0; i < n; i++){
  14. fin >> a[i][j];
  15. cout << a[i][j] << " ";
  16. if (i == (n-1)){
  17. cout << endl;
  18. }
  19. }
  20. }
  21.  
  22. cin.get();
  23. }
Success #stdin #stdout 0s 3416KB
stdin
Standard input is empty
stdout
1 -1080235740 134513120 1 0 
-1216057756 -1215882520 -1080235880 0 6 
0 -1080235808 -1215882612 1 -1216076868 
-1 -1215978774 0 -1215882960 -1216061688 
-1215885312 -1080235888 -1217394368 -1216076868 -1216084192