テキスト ファイルから一連の int を 2D 配列に読み込むプログラムを作成しています。
このファイルには、間にスペースを入れない 81 個の数字の 40 行が含まれています。
array[0][0]
問題は、ループが終了した後に配列を計算するとarray[0][1]
、予想される出力の前後に2つの乱数が出力されることです。改行/改行文字に関係していると思います。ループの最初の反復は完全に実行されます。コードは次のとおりです。
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
int array[9][9];
//Open file:
fstream ifile;
ifile.open("numbers.txt", ios::in);
if (ifile.fail())
{
cout << "Could not open numbers.txt" << endl;
return -1;
}
while (!ifile.eof())
{
for(int i=0; i<9; i++)
{
for(int j=0; j<9; j++)
{
int n = ifile.get();
if(isdigit(n))
{
array[i][j] = n - '0';
}
cout<<"array ["<<i<<"]["<<j<<"] is "<<array[i][j]<<endl;
}
} cout<<"This is a test"<<endl;
}
return 0;
}