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;
} 展开
#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;
} 展开
2个回答
展开全部
#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;
}
#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;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询