题解 | HJ105#记负均正II#

记负均正II

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

import java.util.*;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args)

    {
        Scanner scanner = new Scanner(System.in);
        int numOp = 0;
        int numNeg = 0;
        int sumOp = 0;
        while (scanner.hasNextInt()) {
            int nextInt = scanner.nextInt();
            if (nextInt < 0) {
                numNeg++;
            } else {
                numOp++;
                sumOp += nextInt;
            }
        }
//加入限制条件的判断 若正数为0 则输出0.0.
        if (numOp == 0) {
            System.out.println(0.0);
        } else {
            //输出一位小数
            float res = (float) sumOp / numOp;
            String format = String.format("%.1f", res);
            System.out.println(numNeg);
            System.out.println(format);
        }

    }

}

全部评论

相关推荐

点赞 评论 收藏
分享
11-14 16:13
已编辑
重庆科技大学 测试工程师
Amazarashi66:不进帖子我都知道🐮❤️网什么含金量
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务