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 i =0; i < n; i++){
  13. fin >> a[i][0];
  14. cout << a[i][0] << " ";
  15.  
  16. }
  17.  
  18.  
  19. cin.get();
  20. }
Success #stdin #stdout 0s 3464KB
stdin
Standard input is empty
stdout
1 -1079398076 134513120 1 0