C++使用技巧(八):输入输出读写文件
写:
#include
//1. 头文件
#include
using namespace std;
int main()
{
//2. 创建流
ofstream output;
//3. 打开文件,将流与文件相关联,这里使用相对路径
output.open("number.txt");
//4. 向文件写入数据
output << 1 << " " << 2 << " " << 3 << endl;
//5. 关闭流
output.close();
return 0;
}
读:
#include
//1. 头文件
#include
using namespace s
共有 0 条评论