C++ 文件结束判断
ifstreaminfile("a.txt",ios::in);if(!infile){cout<<"openerror!"<<endl;exit(1);}charch;...
ifstream infile("a.txt",ios::in);
if(!infile){
cout<<"open error!"<<endl;
exit(1);
}
char ch;
infile.get(ch);
while(ch!=EOF){
infile.get(ch);
cout<<ch;
}
cout<<endl<<endl;
infile.close();
这样为什么是死循环,怎样利用ch判断文件结束? 展开
if(!infile){
cout<<"open error!"<<endl;
exit(1);
}
char ch;
infile.get(ch);
while(ch!=EOF){
infile.get(ch);
cout<<ch;
}
cout<<endl<<endl;
infile.close();
这样为什么是死循环,怎样利用ch判断文件结束? 展开
4个回答
展开全部
ifstream infile("a.txt",ios::in);
char ch;
if(infile.fail()){
cout<<"open error!"<<endl;
exit(0);
}
do
{
infile.get(ch);
cout<<ch;
}while(!infile.eof());
cout<<endl<<endl;
infile.close();
这样使用比较正规,可以试下哈~~祝你好运~~
char ch;
if(infile.fail()){
cout<<"open error!"<<endl;
exit(0);
}
do
{
infile.get(ch);
cout<<ch;
}while(!infile.eof());
cout<<endl<<endl;
infile.close();
这样使用比较正规,可以试下哈~~祝你好运~~
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-05-26
展开全部
infile.get(ch);
while(ch!=EOF){
infile.get(ch);
cout<<ch;
}
改为
while(infile>>ch){
cout<<ch;
}
while(ch!=EOF){
infile.get(ch);
cout<<ch;
}
改为
while(infile>>ch){
cout<<ch;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <iostream>
#include <iomanip>
#include <fstream>
using namespace std;
int main()
{
ifstream infile("c:\\a.txt",ios::in);
if(!infile){
cout<<"open error!"<<endl;
exit(1);
}
char ch;
while(infile.get(ch)){
//infile.get(ch);
cout<<ch;
}
cout<<endl<<endl;
infile.close();
}
#include <iomanip>
#include <fstream>
using namespace std;
int main()
{
ifstream infile("c:\\a.txt",ios::in);
if(!infile){
cout<<"open error!"<<endl;
exit(1);
}
char ch;
while(infile.get(ch)){
//infile.get(ch);
cout<<ch;
}
cout<<endl<<endl;
infile.close();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
ch!=EOF这个不好用,只有用infile!=EOF
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询