本帖最後由 蔡季樺 於 2015-10-9 09:12 編輯
- #include<iostream>
- #include<cstdlib>
- using namespace std;
- int main()
- {
- float height,weight,BMI;
- re:
- cout<<"請輸入您的身高(公尺):";
- cin>>height;
- if(height>=30)
- {
- cout<<"你是科學怪人嗎?"<<endl;
- goto re;
- }else if(height<0.3)
- {
- cout<<"Are you is a 侏儒"<<endl;
- goto re;
- }
- re2:
- cout<<"請輸入您的體重(公斤):";
- cin>>weight;
- if(weight>=300)
- {
- cout<<"你是ㄅㄨ一豬!!!"<<endl;
- goto re2;
- }else if(weight<=10)
- {
- cout<<"你是氣球"<<endl;
- goto re2;
- }
- BMI=weight/(height*height);
- cout<<"您的BMI值為:"<<BMI<<endl<<"您的BMI分級為:";
- if(BMI<18.5)
- {
- cout<<"體重過輕!!你需要多吃點喔!"<<endl;
- }else if(BMI>=18.5&&BMI<24)
- {
- cout<<"正常範圍!!繼續保持!"<<endl;
- }else if(BMI>=24&&BMI<27)
- {
- cout<<"過重!!唔..該減肥了!"<<endl;
- }else if(BMI>=27&&BMI<30)
- {
- cout<<"輕度肥胖!!太胖了!這樣會交不到女朋友!"<<endl;
- }else if(BMI>=30&&BMI<35)
- {
- cout<<"中度肥胖!!去操場跑個十圈再回來!"<<endl;
- }else
- {
- cout<<"重度肥胖!!你需要立即注意你的飲食,因為你的生命正受到嚴重威脅!"<<endl;
- }
- system("pause");
- return 0;
- }
複製代碼 |