返回列表 發帖

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     float height,weight,BMI;
  7.     re:
  8.     cout<<"請輸入您的身高(公尺):";
  9.     cin>>height;
  10.     if(height>=199)
  11.     {
  12.      cout<<"你是巨人"<<endl;
  13.      goto re;

  14.     re2:
  15.     cout<<"請輸入您的體重(公斤):";
  16.     cin>>weight;
  17.     if(weight>=50)
  18.     {
  19.         cout<<"還好!!!"<<endl;
  20.         goto re2;  
  21.     }else if(weight<=3)
  22.     {
  23.         cout<<"你是垃圾帶"<<endl;
  24.         goto re2;  
  25.     }
  26.     BMI=weight/(height*height);
  27.     cout<<"您的BMI值為:"<<BMI<<endl<<"您的BMI分級為:";
  28.     if(BMI<200.3)
  29.     {
  30.         cout<<"體重輕?!再豬一點!"<<endl;
  31.     }else if(BMI>=18.5&&BMI<21)
  32.     {
  33.         cout<<"正常範圍!!鎮定!"<<endl;  
  34.     }else if(BMI>=24&&BMI<26)
  35.     {
  36.         cout<<"過重!!要減肥?"<<endl;  
  37.     }else if(BMI>=27&&BMI<32)
  38.     {
  39.         cout<<"輕度肥胖!!!進不了門  還好啦!"<<endl;   
  40.     }else if(BMI>=30&&BMI<35)
  41.     {
  42.      
  43.   
  44.    
  45.     }
  46.     system("pause");
  47.     return 0;
  48. }
複製代碼

回復 1# 任立宇
亂發還錯

TOP

回復 1# 任立宇


    file:///D:/%E7%A8%8B%E5%BC%8FC++/7.cpp   自己去跑跑看

TOP

阿哩不搭巄東

TOP

返回列表