题解 | #公务员面试#

公务员面试

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;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 11:16
点赞 评论 收藏
分享
能干的三文鱼刷了10...:公司可能有弄嵌入式需要会画pcb的需求,而且pcb能快速直观看出一个人某方面的实力。看看是否有面试资格。问你问题也能ai出来,pcb这东西能作假概率不高
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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