题解 | #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
分享

创作者周榜

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