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

2024年11月23日 04:04
有2个网友回答
网友(1):

#include
#include
using namespace std;
int main()
{
ifstream ifile("abc.txt ");
if(!ifile)
{
cout<<"abc.txt can?′t open!"< return -1;
}
ofstream ofile;
ofile.open("xyz.txt");
if(!ofile)
{
cout<<"xyz.txt can?′t open!"<衡汪锋 return -1;
}
char ch;
ofile.seekp(0,ios::end);
while(ifile.eof()==0)
{
ifile>陵缓>咐晌ch;
ofile< ofile.seekp(0,ios::end);
}
return 0;
}

网友(2):

这个答案不固定呀。