题解 | 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);
        }

    }

}

全部评论

相关推荐

10-07 20:48
门头沟学院 Java
听说改名就会有offer:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务