vc++的文件输入输出问题

#include<iostream>#include<fstream>#include<string>usingnamespacestd;intmain(){ofstre... #include<iostream>
#include<fstream>
#include<string>
using namespace std;
int main()
{
ofstream outfile("2.txt");
ifstream infile("1.txt");
if(! infile)
{
cerr<<"error: unable to open the file!\n";
return -1;
}
if(! outfile)
{
cerr<<"error ;unable to open out put file !"<<endl;
return -2;
}
string word;
while(infile>>word)
outfile<<word<<" ";
return 0;
}错误提示:说无法打开文件,我的输入输出文件和.cpp一起的,为什么无法打开?而且我用了绝对路径也不行。。。
展开
 我来答
太极狂
2012-03-07 · 超过14用户采纳过TA的回答
知道答主
回答量:124
采纳率:0%
帮助的人:22.7万
展开全部
不管绝对路径还是相对路径都要注意转义字符\,比如绝对路径d:\\test.txt,必须用\\来表示\

参考资料: www.54wr.com

匿名用户
2012-03-07
展开全部
.cpp后缀是c语言的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式