题解 | #判断体重指数#
判断体重指数
http://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......
double a=weight/(height*height);
System.out.println(a>24.9? "偏胖":a>=20.9?"适中":a>=18.5?"苗条":"偏瘦");
}
}
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......
double a=weight/(height*height);
System.out.println(a>24.9? "偏胖":a>=20.9?"适中":a>=18.5?"苗条":"偏瘦");
}
}