题解 | 判断体重指数

判断体重指数

https://www.nowcoder.com/practice/688f96cc38bb4a76996698d2f987b1b5

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        double height = scanner.nextDouble();
        double weight = scanner.nextDouble();

        double result = 0;

        result = weight / (height * height);

        if (result < 18.5) {
            System.out.println("偏瘦");
        } else if (result >= 18.5 && result < 20.9) {
            System.out.println("苗条");
        } else if (result >= 20.9 && result < 24.9) {
            System.out.println("适中");
        } else {
            System.out.println("偏胖");
        }

    }
}

#Java练习#
全部评论

相关推荐

不知道怎么取名字_:愚人节收到的吧,刚看到有人也是愚人节说收到offer的
腾讯求职进展汇总
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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