码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材-p326_3(1)

时间:2020-02-05 17:54:22      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:ifstream   inf   http   names   ret   image   include   txt   mes   

源程序:

#include <iostream>
#include <fstream>
using namespace std;

int main()
{
int i;
ofstream ftxt1;
ftxt1.open("c:\\tmp\\xt1.txt",ios::out);
for (i = 1; i < 10; i++)
ftxt1 << i << ‘ ‘;
ftxt1.close();
ifstream ftxt2;
ftxt2.open("c:\\tmp\\xt1.txt",ios::in);
while (!ftxt2.eof())
{
ftxt2 >> i >> i;
cout << i << endl;
}
ftxt2.close();
system("pause");
return 1;

}

运行结果:

文件xt1.txt的内容如下:

技术图片

 

 屏幕显示结果如下:

技术图片

 

自考新教材-p326_3(1)

标签:ifstream   inf   http   names   ret   image   include   txt   mes   

原文地址:https://www.cnblogs.com/duanqibo/p/12264598.html

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