hduoj 2014

来源:互联网 发布:淘宝上拍了卖方不发货 编辑:程序博客网 时间:2024/05/17 21:48

青年歌手大奖赛_评委会打分

Problem Description
青年歌手大奖赛中,评委会给参赛选手打分。选手得分规则为去掉一个最高分和一个最低分,然后计算平均得分,请编程输出某选手的得分。
 
Input
输入数据有多组,每组占一行,每行的第一个数是n(2<n<=100),表示评委的人数,然后是n个评委的打分。
 
Output
对于每组输入数据,输出选手的得分,结果保留2位小数,每组输出占一行。
 
Sample Input
3 99 98 974 100 99 98 97
 
Sample Output
98.0098.50


#include<stdio.h>
int main()
{
    int n;
    while(scanf("%d",&n)!=EOF){
        int score,i,max=0,min=101,sum=0;
        double ave;
        for(i=0;i<n;i++){
            scanf("%d",&score);
            sum+=score;
            if(score>max){
                max=score;
            }
            if(score<min){
                min=score;
            }
        }
        sum=sum-max-min;
        ave=sum/(double)(n-2);
        printf("%.2lf",ave);
        printf("\n");
    }
    return 0;
}

原创粉丝点击