题解 | #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;
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
07-01 10:56
点赞 评论 收藏
分享
06-07 17:17
嘉兴学院 教师
心爱的idea:你孩
点赞 评论 收藏
分享
06-26 18:30
门头沟学院 Java
据说名字越长别人越关...:你问问这里面有多少是正经候选人,而不是乱打招呼的
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

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