码迷,mamicode.com
首页 > 编程语言 > 详细

C++学习(41)

时间:2018-07-02 00:18:28      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:span   col   http   分享图片   inf   IV   int   info   .com   

 1 //用输出运算符"<<"写入文件中
 2 #include<fstream.h>
 3 int main(){
 4     ofstream ofs("Data.dat");
 5     char str[3][20]={"abc\n","def\n","ghi\n"};
 6     for(int i=0;i<3;i++){
 7         ofs<<str[i];
 8     }
 9     ofs.close();
10     return 0;
11 }

技术分享图片

 

Data.dat文件的内容是

1 abc
2 def
3 ghi

 

C++学习(41)

标签:span   col   http   分享图片   inf   IV   int   info   .com   

原文地址:https://www.cnblogs.com/Tobi/p/9251650.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!