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

相关推荐

菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
评论
点赞
1
分享
牛客网
牛客企业服务