赞
踩
- package pro;
- import java.util.Scanner;
- public class pro1 {
- public static void main(String[] args) {
- Scanner input = new Scanner(System.in);
- double weight, height;
- double bmi;
- System.out.print("请输入你的体重:");
- weight = input.nextDouble();
- System.out.print("请输入你的身高:");
- height = input.nextDouble();
- bmi = weight / (height * height);
- System.out.println("你的身体质量指数:" + bmi);
- if (bmi < 18.5) {
- System.out.println("你的体重偏瘦");
- } else if (bmi < 25) {
- System.out.println("你的体重质量正常");
- } else if (bmi < 30) {
- System.out.println("你的体重质量超重");
- } else {
- System.out.println("你的体重质量过胖");
- }
- }
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。