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一起的,为什么无法打开?而且我用了绝对路径也不行。。。 展开
#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一起的,为什么无法打开?而且我用了绝对路径也不行。。。 展开
2个回答
2012-03-07
展开全部
.cpp后缀是c语言的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询