C++问题,文件读取

#include<iostream>#include<fstream>#include<string>usingnamespacestd;voidmain(){ifstr... #include<iostream>
#include<fstream>
#include<string>
using namespace std;
void main()
{
ifstream infile;
char filename[20];
cout<<"Please enter the file name: ";
infile.open(filename);
int count=0;
cin.getline(filename,20);
char value;
infile>>value;
while(infile.good())
{
count++;
infile>>value;
}
cout<<count<<" characters in the file!"<<endl;
}
这里的代码有什么问题吗,为什么读取不了文档,while直接被跳过了,不执行!还有open()的参数必须是char的吗,string不行??
展开
 我来答
HongZe081100
2012-09-20 · TA获得超过580个赞
知道小有建树答主
回答量:436
采纳率:0%
帮助的人:439万
展开全部
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
void main()
{
ifstream infile;
char filename[20];
cout<<"Please enter the file name: ";
cin.getline(filename,20);//获得文件路径

infile.open(filename);//文件路径,没有create
int count=0;//读取的字符数计数
char value;
infile>>value;//预读
while(infile.good())//char文件
{
count++;//计数
infile>>value;//下一个字符,跳过空白符
}
cout<<count<<" characters in the file!"<<endl;
}
hqxz556
2012-10-02 · TA获得超过2831个赞
知道大有可为答主
回答量:1686
采纳率:93%
帮助的人:576万
展开全部
你先 open 后输入的文件名。这个逻辑就不太对吧。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2012-09-20
展开全部
cin.getline(filename,20); 需要放在 infile.open(filename); 前面。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式