赞
踩
使用Scanner收集你的身高体重,并计算出你的BMI值是多少
BMI的计算公式是 体重(kg) / (身高*身高)米
比如隔壁老王的体重是72kg, 身高是1.69,那么这位同学的BMI就是
72 / (1.69*1.69) = ?
然后通过条件判断BMI的范围,打印出是超重还是正常
- import java.util.Scanner;
- /*
- * 使用Scanner收集你的身高体重,并计算出你的BMI值是多少
- *BMI的计算公式是 体重(kg) / (身高*身高)米
- * */
- public class BMI {
- public static void main(String[] args) {
- Scanner s = new Scanner(System.in);
- System.out.print("请输入你的身高(米):");
- double height = s.nextDouble();
- System.out.print("请输入你的体重(kg):");
- double weight = s.nextDouble();
- try {
- double bmi = weight/(height*height);
- System.out.println("当前的BMI为:"+bmi);
- if (bmi<18.5){
- System.out.println("你的体重过轻");
- }else if (bmi<24){
- System.out.println("你属于正常范围内");
- }else if (bmi<27){
- System.o
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。