一.问题描述
使用I/O流以文本方式建立一个文件test1.txt,写入字符“已成功写入文件!”,用其它字处理程序(例如windows的记事本程序Notepad)打开,看看是否正确写入。
二.设计思路
三.流程图
四.伪代码
1
五.代码实现
1#include<fstream>
#include<iostream>
using namespace std;
int main() {
ofstream file1("text.txt");
file1 << "Success to write!";
file1.close();
return 0;
}
标签:file1,include,21.1,每日,写入,打卡,txt From: https://www.cnblogs.com/leapssisbird/p/17392521.html