不知道你是不是想问的这个,可以参考一下
#include
#include
#include
using namespace std;
int main() {
ifstream fileIn("readfile.txt");
ofstream fileOut("writefile.txt", ofstream::binary);
string inputs;
while (getline(fileIn,inputs)) {
fileOut << inputs << endl;
}
fileIn.close();
fileOut.close();
}