#include <fstream>
#include<iostream>
using namespace std;void test01(){ofstream ofs;ofs.open("test.txt",ios :: out);ofs << "姓名:张三"<< endl;ofs << "性别:男"<< endl;ofs << "年龄: 18" << endl;ofs.close();
}
int main() {test01();system(" pause");
}
这个就是文件的内容,默认写进和这个cpp同一层路径