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. ifstream fin("text.txt"); // открыли файл для чтения
  11. for (int i = 0; i < n; i++) {
  12. for (int j = 0; j < n; j++)
  13. {
  14. fin >> a[i][j];
  15. cout << a[i][j] << " ";
  16.  
  17. }
  18. cout << endl;
  19. }
  20. cin.get();
  21. }
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
1 -1216115100 0 -1 -1215942656 
-1080026252 -1215939864 -1080026320 -1216036118 -1080026400 
134513128 -1080026392 -1215939956 0 -1217451712 
1 0 1 -1215940304 -1216134212 
0 6 -1216134212 -1216119032 -1216141536