【C】#公务员面试#

公务员面试

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

#include <stdio.h>

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


    }
    return 0;
}

全部评论

相关推荐

评论
2
收藏
分享

创作者周榜

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