C++如何将结果保存到txt文件中
发布网友
发布时间:2023-10-02 10:31
我来回答
共1个回答
热心网友
时间:2023-11-18 21:17
你可以直接把内容写到txt文件中啊,比如下面的代码里面,就是把内容写到out.txt文件里
// writing on a text file
#include <iostream>
#include <fstream>
using namespace std;
int main ()
{
ofstream out("out.txt");
if (out.is_open())
{
out << "This is a line.\n";
out << "This is another line.\n";
out.close();
}
return 0;
}
//结果: 在out.txt中写入:
//This is a line.
//This is another line