题解 | #判断体重指数#

判断体重指数

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();

        //write your code here......
        String result = "";
        double bmi = weight / (height * height);

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

        System.out.println(result);
    }
}

全部评论

相关推荐

评论
1
收藏
分享

创作者周榜

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