我无法将文件中的数字读取到 C++ 中的二维数组中。它可以很好地读取第一行,但其余行填充为 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();
}