我有一个名为scores.txt的文本文件,其中包含以下数据:
John T Smith 90
Eric K Jones 103
Ram S Krishnan 25
Marie A Bell 50
我正在尝试从此文件中读取数据并使用以下C ++代码进行打印:
ifstream input;
input.open("scores.txt");
string firstName;
char mi;
string lastName;
int score;
while (input) {
input>>firstName>>mi>>lastName>>score;
cout<<firstName<<" "<<mi<<" "<<lastName<<" "<<score<<endl;
}
input.close();
cout<<"Done"<<endl;
输出结果为:
John T Smith 90
Eric K Jones 103
Ram S Krishnan 25
Marie A Bell 50
Marie A Bell 50
为什么最后一行(Marie A Bell 50)被打印两次?我怎样才能防止这种情况发生?
答案 0 :(得分:6)
这是因为刚刚读完文件的最后一行后,input
尚未在文件末尾。您的程序第五次进入while
循环,读取input
(将其设置为文件结束状态),不会更改变量并打印它们。
避免这种情况的一种方法(在众多中)是写一些像
的东西while (input >> var1 >> var2)
{
std::cout << var1 << "," << var2 << std::endl;
}