写文件的具体步骤:
其中文件打开方式有下面几种:
代码实现示例:
#include<iostream>
using namespace std;
#include<fstream>
void test01()
{
ofstream ofs;
ofs.open("练习生.txt", ios::out);//这里选择打开自己文件,没有会自己创建
ofs << "鸡你太美" << endl;
ofs.close();
}
int main() {
test01();
}
文件就写好了