青年歌手大奖赛_评委会打分
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 30947 Accepted Submission(s): 14964
Problem Description
青年歌手大奖赛中,评委会给参赛选手打分。选手得分规则为去掉一个最高分和一个最低分,然后计算平均得分,请编程输出某选手的得分。
Input
输入数据有多组,每组占一行,每行的第一个数是n(2<n<=100),表示评委的人数,然后是n个评委的打分。
Output
对于每组输入数据,输出选手的得分,结果保留2位小数,每组输出占一行。
Sample Input
3 99 98 97 4 100 99 98 97
Sample Output
98.00 98.50
Author
lcy
Source
Recommend
lcy
#include <iostream>
using namespace std;
int main(){
int m,n,i;
while(cin>>m)
{
int max = 0, min = 100;
double s = 0;
for (i = 0; i < m; i ++)
{
cin>>n;
if(max < n)
max = n;
if(min > n)
min = n;
s += n;
}
cout.setf(ios::fixed);
cout.precision(2);
cout<<(s-max-min)/(m-2)<<endl;
}
return 0;
}