C++中怎么向一个文本文件追加到另一个文本文件内容的末尾。帮忙把程序填写完。 5

#include<fstream>#include<iostream>usingnamespacestd;intmain(){ifstreamifile(________... #include<fstream>
#include<iostream>
using namespace std;
int main()
{
ifstream ifile(_______________);
if(!ifile)
{
cout<<"abc.txt canʹ′t open!"<<endl;
return ‐1;
}
ofstream ofile;
ofile.open(_______________);
if(!ofile)
{
cout<<"xyz.txt canʹ′t open!"<<endl;
return­‐1;
}
char ch;
ofile.seekp(0,ios::end);
while(ifile._______________)
ofile._______________;
ifile._______________;
ofile._______________;
return 0;
}
展开
 我来答
宝帅期
2012-06-18
知道答主
回答量:24
采纳率:0%
帮助的人:17万
展开全部
#include<fstream>
#include<iostream>
using namespace std;
int main()
{
ifstream ifile("abc.txt ");
if(!ifile)
{
cout<<"abc.txt can?′t open!"<<endl;
return -1;
}
ofstream ofile;
ofile.open("xyz.txt");
if(!ofile)
{
cout<<"xyz.txt can?′t open!"<<endl;
return -1;
}
char ch;
ofile.seekp(0,ios::end);
while(ifile.eof()==0)
{
ifile>>ch;
ofile<<ch;
ofile.seekp(0,ios::end);
}
return 0;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wpz_r001
2012-06-13
知道答主
回答量:41
采纳率:0%
帮助的人:11.6万
展开全部
这个答案不固定呀。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式