首页 > 编程语言 > 详细

数组送到磁盘文件存放

时间:2018-08-02 10:38:42      阅读:177      评论:0      收藏:0      [点我收藏+]
 1 #include <iostream>
 2 #include <fstream>
 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 4 using namespace std;
 5 int main(int argc, char** argv) {
 6     int a[10];
 7     ofstream outfile("f1.dat",ios::out);
 8     if(!outfile)
 9     {
10         cerr<<"open error!"<<endl;
11         exit(1);
12     }
13     cout<<"enter 10 integer numbers:"<<endl;
14     for(int i=0;i<10;i++)
15     {
16         cin>>a[i];
17         outfile<<a[i]<<" ";
18     }
19     outfile.close();
20     return 0;
21 }

 

数组送到磁盘文件存放

原文:https://www.cnblogs.com/borter/p/9405566.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!