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

相关推荐

05-12 17:00
门头沟学院 Java
king122:你的项目描述至少要分点呀,要实习的话,你的描述可以使用什么技术,实现了什么难点,达成了哪些数字指标,这个数字指标尽量是真实的,这样面试应该会多很多,就这样自己包装一下,包装不好可以找我,我有几个大厂最近做过的实习项目也可以包装一下
点赞 评论 收藏
分享
06-12 10:50
门头沟学院 Java
你的不定积分没加C:我怎么在学院群看到了同样的话
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

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