c++文件操作-文本文件-写文件
#include <iostream> #include <fstream>//包含头文件 using namespace std; void test01() { //1.包含头文件 //2.创建流对象 ofstream ofs; //3.打开文件 ofs.open("text.txt", ios::out); //4.写数据 ofs << "姓名:张三" << endl; ofs << "性别:男" << endl; ofs << "年龄:18" << endl; //5.关闭文件 ofs.close(); } int main() { test01(); system("pause"); return 0; }