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