C++ でファイルから 2 次元配列に数値を読み取るのに問題があります。最初の行は問題なく読み取れますが、残りの行には 0 が入力されています。何が間違っているのかわかりません。
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int myarray[20][20];
int totRow = 20, totCol = 20, number, product, topProduct = 0, row, col, count;
char element[4];
ifstream file;
file.open( "c:\\2020.txt" );
if( !file )
{
cout << "problem";
cin.clear();
cin.ignore(255, '\n');
cin.get();
return 0;
}
while( file.good())
{
for( row = 0; row < totRow; row++ )
{
for( col = 0; col < totCol; col++ )
{
file.get( element, 4 );
number = atoi( element );
myarray[row][col] = number;
cout << myarray[row][col] << " ";
}
cout << endl;
}
file.close();
}