返回列表 發帖
  1. import java.util.Scanner;

  2. public class BMI
  3. {
  4.   public static void main(String args[])
  5.   {
  6.     float weight;
  7.     float hight;
  8.     float BMI_Value;
  9.     Scanner s = new Scanner(System.in);

  10.     System.out.println("Please Input Your Weight(Kg), ex:80 :");
  11.     weight = s.nextFloat();

  12.     System.out.println("Please Input your Hight(m), ex:1.80 :");
  13.     hight = s.nextFloat();

  14.     BMI_Value = weight/(hight*hight);

  15.     System.out.println("Your BMI is "+ BMI_Value);
  16.    
  17.     if(BMI_Value <0)
  18.     {
  19.       System.out.println("你是鬼吧!!");
  20.     }
  21.     if(BMI_Value < 18.5)
  22.     {
  23.       System.out.println("體重過輕");
  24.     }
  25.     else if(BMI_Value>=18.5 && BMI_Value <24)
  26.     {
  27.       System.out.println("恭喜你! BMI正常!");
  28.     }
  29.     else if(BMI_Value >= 24 && BMI_Value<27)
  30.     {
  31.       System.out.println("你有點過重囉!!");
  32.     }
  33.     else
  34.     {
  35.       System.out.println("Input Error!!");
  36.     }

  37.   }
  38. }
複製代碼

TOP

返回列表