p281

Posted duanqibo

tags:

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

源程序:

#include <iostream>

using namespace std;

int main()

{

int x, count, sum = 0;

freopen("c:\input.txt", "r", stdin);

for (count = 0; count<10; count++)

{

cin >> x;

if (cin.eof())

break;

else sum += x;

}

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

system("pause");

return 0;

}

运行结果:

在input.txt中输入10个整数,读10个整数读入文件中,依次相加,直到文件结束停止读入,再求平均值

以上是关于p281的主要内容,如果未能解决你的问题,请参考以下文章

写代码---每日一题(二分查找)