私の配列を3行ずつ3値ずつ読みたい。あなたの値は、スペース、タブまたは改行である「ホワイトスペース」で区切られているので配列を1行ずつ読み込み3値を3値
for (unsigned int row = 0; row < 3; ++row)
{
for (unsigned int column = 0; column < 3; ++column)
{
inFile >> image[row][column];
}
}
:私は私の行列などなどに入れて3つの値を回復するときに...
for(int i=0; i<_height; i++) {
for(int j=0; j<_width; j++) {
result = ifile.get();
(image)[i][j]= (int)result;
// Display the array which contains data
cout << (image)[i][j] << " ";
}
cout << endl;
}
あなたの質問は実際には? –
ファイルにテキスト形式の値が含まれている場合は、 'ifile >> result;'を使用することができます。 –
どうすれば行3の値を3つの値で取り出すことができますか? – Rayan958