c++文件输入输出问题

#include<iostream>#include<fstream>#include<cstdlib>usingnamespacestd;constintSIZE=60... #include <iostream>
#include <fstream>
#include<cstdlib>
using namespace std;
const int SIZE = 60;
int main ()
{
char filename[SIZE];
ifstream infile;
int count,value;
char name[20];
cout<<"Enter file name: ";
cin.getline(filename,SIZE);
infile.open(filename);
if(!infile.is_open())
{
cout<<"打开失败!"<<endl;
exit(EXIT_FAILURE);
}
infile>>count;
if(count!=0)
{
cout<<count<<"ren"<<endl;
}
while(infile.good())
{

infile>>name;
cout<<"姓名:"<<name<<endl;
infile>>value;
cout<<"金额:"<<value<<endl;
}
if(infile.eof())
{
cout<<"读取完毕!"<<endl;
}
else if(infile.fail())
{
cout<<"读取失败!"<<endl;
}
else{
cout<<"其他错误!"<<endl;
}
infile.close();
}
为什么会多输出一行。
展开
 我来答
gnahziuggnip
2015-05-17 · TA获得超过507个赞
知道小有建树答主
回答量:469
采纳率:0%
帮助的人:271万
展开全部
把while (infile.good ()) 改为while (count!=0)
在while循环里加一句
count--;
更多追问追答
追问
你运行一下试试。他还是有错误。
追答
你再贴一下修改过的程序
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式