许久不敲代码,库名也忘了,精度设置还有求最大最小值都是常规题了。
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
//一种不用开数组的方法
int n;
cin>>n;
int top=0;
int low=100;//确定最大和最小值
int score;
double sum=0;
for(int i=0;i<n;i++)
{
cin>>score;
if(score>top)
top=score;
if(score<low)
low=score;
sum+=score;
}
cout<<top<<endl;
cout<<low<<endl;
cout<<fixed<<setprecision(2)<<sum/n;
return 0;
}