自考新教材-p279_2

Posted duanqibo

tags:

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

源程序:

#include <iostream>

using namespace std;

int main()

{

int x, count, sum = 0;

freopen("c:\input.txt", "r", stdin); //将标准输入重定向到文件input.txt

for (count = 0; count<10; count++)   //从输入流中读入10个整数进行处理

{

cin >> x;

sum += x;

}

cout << "前10个整数的平均值=" << 1.0*sum / 10 << endl;

system("pause");

return 0;

}

运行结果:

在input.txt文件中输入10个整数,将标准输入重定向到该文件,读此10个数,相加,再求平均值

 

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

自考新教材-p274_2

自考新教材-p272_2

自考新教材-p240_2

自考新教材-p350_2

自考新教材-p352_2

自考新教材-p58_3