- import java.util.Scanner;
- public class BMI
- {
- public static void main(String args[])
- {
- float weight;
- float hight;
- float BMI_Value;
- Scanner s = new Scanner(System.in);
- System.out.println("Please Input Your Weight(Kg), ex:80 :");
- weight = s.nextFloat();
- System.out.println("Please Input your Hight(m), ex:1.80 :");
- hight = s.nextFloat();
- BMI_Value = weight/(hight*hight);
- System.out.println("Your BMI is "+ BMI_Value);
-
- if(BMI_Value <0)
- {
- System.out.println("你是鬼吧!!");
- }
- if(BMI_Value < 18.5)
- {
- System.out.println("體重過輕");
- }
- else if(BMI_Value>=18.5 && BMI_Value <24)
- {
- System.out.println("恭喜你! BMI正常!");
- }
- else if(BMI_Value >= 24 && BMI_Value<27)
- {
- System.out.println("你有點過重囉!!");
- }
- else
- {
- System.out.println("Input Error!!");
- }
- }
- }
複製代碼 |