题解 | #公务员面试#

公务员面试

https://www.nowcoder.com/practice/f3a134908d5b41869f14f58307008a97

#include<stdio.h>
int main()
{
    int max=0,count=0;
    int min=100;
    int tmp;
    float sum=0;
    while(scanf("%d",&tmp)!=EOF)
    {
        if(tmp>max)
            max=tmp;
        if(tmp<min)
            min=tmp;
        sum+=tmp;
        count++;
        if(count==7)
        {
            sum=sum-max-min;
            printf("%.2f\n",sum/5);
            sum=count=max=0;
            min=100;
        }
    }
    return 0;
}

全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务