使用Visual C++语言 由用户输入五个浮点数,并将其存放在数组中,求其平均值,最大值和最小值,并显示。

2023-07-26 11:02发布

提供一个思路吧,把数组排序就可以了#p##include #include int main(){ using name

提供一个思路吧,把数组排序就可以了#p##include #include int main(){ using name
3条回答
追风白狐 gxfxray
2023-07-26 11:45

#include <iostream>
#include <valarray>

int main()
{
using namespace std;

valarray<double> number(5);
cout << "请输入5个浮点数: ";
for(int i = 0;i < 5;i++)
cin >> number[i];
cout << "平均数为: " << number.sum()/5 << endl;
cout << "最大数为: " << number.max() << endl;
cout << "最小数为: " << number.min() << endl;

return 0;
}本回答被提问者采纳

一周热门 更多>