题解 | #HJ105 记负均正II#

记负均正II

http://www.nowcoder.com/practice/64f6f222499c4c94b338e588592b6a62

#include <stdio.h>
 
int main() {
    int num;
    int negativeCount = 0, nonNegativeSum = 0, nonNegativeCount = 0;
    double nonNegativeMean = 0;
    while (scanf("%d", &num) != EOF) {
        if (num < 0) {
            negativeCount++;
        } else {
            nonNegativeSum += num;
            nonNegativeCount++;
        }
    }
    if (nonNegativeCount == 0) {
        nonNegativeMean = 0;
    } else {
        nonNegativeMean =(double)nonNegativeSum/nonNegativeCount;
    }
    printf("%d\n", negativeCount);
    printf("%.1f\n", nonNegativeMean);
    return 0;
}
全部评论

相关推荐

Natrium_:这时间我以为飞机票
点赞 评论 收藏
分享
10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-27 10:46
点赞 评论 收藏
分享
评论
点赞
1
分享
牛客网
牛客企业服务