自考新教材-p326_3

Posted duanqibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p326_3相关的知识,希望对你有一定的参考价值。

源程序:

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

int main()
{
int i;
ifstream f1("c: mpxt1.txt",ios::in);
fstream f2("c: mpxt2.txt",ios::out|ios::binary);
while (!f1.eof())
{
f1 >> i;
i = i * 5;
f2.write((char *)&i,sizeof(int));
}
f1.close();
f2.close();
f2.open("c: mpxt2.txt",ios::in|ios::binary);
do
{
f2.read((char *)&i,sizeof(int));
cout << i << ",";
} while (i<30);
cout << endl;
f2.close();
system("pause");
return 1;
}

运行结果:

技术图片

 

以上是关于自考新教材-p326_3的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p173_3

自考新教材-p272_3

自考新教材-p58_3

自考新教材-p142_3

自考新教材-p58_3

自考新教材-p58_3