C++文件写入

来源:互联网 发布:c语言delay 编辑:程序博客网 时间:2024/06/06 05:38
#include<fstream>std::ofstream BFile;BFile.open("B_Matrix.txt");BFile << "Is good!"<<endl;BFile.close();
原创粉丝点击