ifstream ofstream c++中读写文件
2021-06-10 21:02
阅读:587
标签:line bsp col stream 读写 span 一个 str 创建文件 ifstream ofstream c++中读写文件 标签:line bsp col stream 读写 span 一个 str 创建文件 原文地址:https://www.cnblogs.com/zhangzhenjun/p/14244970.html
创建文件并打开
ofstream out("sf1.txt");
往文件中写
1、一个单词一个单词写
cin>>s,outs;
2、一行一行写
cin.getline(s,num);
outs;
打开文件往外写
ifstream in("sf1.txt");
1、一个单词一个单词往外写
in>>s;
2、一行一行往外写
in.getline(s,num);
上一篇:Python基础,,小题目
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:ifstream ofstream c++中读写文件
文章链接:http://soscw.com/index.php/essay/93306.html
文章标题:ifstream ofstream c++中读写文件
文章链接:http://soscw.com/index.php/essay/93306.html
评论
亲,登录后才可以留言!