整数ごとに読み取れるようにファイルを読みたい。私はそれを一行ずつ読みましたが、整数ごとに読みたいです。
これは私のコードです:
void input_class::read_array()
{
infile.open ("time.txt");
while(!infile.eof()) // To get you all the lines.
{
string lineString;
getline(infile,lineString); // Saves the line in STRING
inputFile+=lineString;
}
cout<<inputFile<<endl<<endl<<endl;
cout<<inputFile[5];
infile.close();
}