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

  2. public class BMI
  3. {
  4.   public static void main (String args[])
  5.   {
  6.     Scanner s = new Scanner(System.in);
  7.     float weight , height , BMI;
  8.     System.out.print("請輸入您的身高cm(整數): ");
  9.     height = s.nextFloat()/100;
  10.     while(height>2.5 || height <0.5)
  11.     {
  12.       System.out.print("您輸入的身高(cm)有誤,請重新輸入: ");
  13.       height = s.nextFloat()/100;
  14.     }
  15.     System.out.println() ;
  16.     System.out.println() ;
  17.     System.out.println("您的身高為:"+(height*100)+"cm") ;
  18.     System.out.print("請輸入您的體重kg(整數): ");
  19.     weight = s.nextFloat();
  20.     while(weight>250 || weight <0)
  21.     {
  22.       System.out.print("您輸入的體重(kg)有誤,請重新輸入: ");
  23.       weight = s.nextFloat();
  24.     }
  25.     System.out.println("您的體重為:"+weight+"kg") ;
  26.     System.out.println("計算中.....") ;
  27.     BMI = weight / ( height * height );
  28.     System.out.println("┌────────────────┐") ;
  29.     System.out.println("│您的身高為: "+(height*100)+"(cm)           │") ;
  30.     System.out.println("│您的體重為: "+weight+"(kg)            │") ;
  31.     System.out.println("└────────────────┘")  ;
  32.     System.out.println("================================") ;
  33.     System.out.println("您的BMI值為: "+BMI) ;

  34.     if(BMI >= 35)
  35.     {
  36.       System.out.println("診斷結果:重度肥胖") ;
  37.     }else if(BMI<35 && BMI>=30)
  38.     {
  39.       System.out.println("診斷結果:中路肥胖") ;
  40.     }else if(BMI<30 && BMI>=27)
  41.     {
  42.       System.out.println("診斷結果:輕度肥胖") ;
  43.     }else if(BMI<27 && BMI>=24)
  44.     {
  45.       System.out.println("診斷結果:過重") ;
  46.     }else if(BMI<24 && BMI>=18.5)
  47.     {
  48.       System.out.println("診斷結果:恭喜您在正常範圍") ;
  49.     }else if(BMI<18.5 && BMI>0)
  50.     {
  51.       System.out.println("診斷結果:體重過輕") ;
  52.     }else
  53.     {
  54.       System.out.println("輸入有誤請重新檢查") ;
  55.     }
  56.     System.out.println("================================") ;
  57.   }
  58. }
複製代碼

TOP

返回列表