编写C++程序“编写程序,将一个文本文件的内容连接到另一个文本文件的末尾。”
1个回答
展开全部
将盯锋 in.txt 的内容连接到 out.txt 的末尾
#include <fstream>
#include <string>
#include <凯运晌悄腊iostream>
using namespace std;
int main()
{
ifstream ifile;
ifile.open("in.txt");
ofstream ofile;
ofile.open("out.txt",ofstream::app);
string str;
while(ifile>>str)ofile<<str<<endl;
ifile.close();
ofile.close();
return 0;
}
#include <fstream>
#include <string>
#include <凯运晌悄腊iostream>
using namespace std;
int main()
{
ifstream ifile;
ifile.open("in.txt");
ofstream ofile;
ofile.open("out.txt",ofstream::app);
string str;
while(ifile>>str)ofile<<str<<endl;
ifile.close();
ofile.close();
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询