题解 | #统计成绩#

统计成绩

http://www.nowcoder.com/practice/cad8d946adf64ab3b17a555d68dc0bba

#include <stdio.h>

int main() {
    const unsigned int n;
    float scores[100];
    float sum = 0, max = 0, min = 100;
    scanf("%d", &n);
    for (int i = 0; i < n; i++) {
        scanf("%f", &scores[i]);
        sum += scores[i];
        if(scores[i] > max){
            max = scores[i];
        }
        if(scores[i] < min){
            min = scores[i];
        }
    }
    printf("%.2f %.2f %.2f\n", max, min, sum / n);

    return 0;
}
全部评论

相关推荐

随机网络优化:可以买个干旱或者大型猎物
点赞 评论 收藏
分享
2024-12-16 18:00
已编辑
门头沟学院 Java
摆摆不摆:想年轻多拼拼赚钱就去华子,想轻松点就去media
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务