题解 | #公务员面试#

公务员面试

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

#include <stdio.h>

int main() {
    int score = 0;
    int max = 0;
    int min = 100;
    int count = 0;
    int sum = 0;
    while (scanf("%d", &score) != EOF) 
    { 
        if (score > max)
        {
            max = score;
        }
        if (score < min)
        {
            min = score;
        }
        sum += score;
        count++;
        if (count == 7)
        {
            float result = (sum - min - max) / 5.0;
            printf("%.2f\n",result);
            max = 0;
            min = 100;
            sum = 0;
            count = 0;
            
        }

    }
    return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
今天 13:05
点赞 评论 收藏
分享
06-02 15:17
门头沟学院 Java
心爱的idea:怎么会呢 应该是打招呼有问题 问就说实习6个月全国可飞随时到岗
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
今天 14:10
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务