標題:
[作業] 男性BMI 判斷
[打印本頁]
作者:
張翼安
時間:
2015-10-3 12:02
標題:
[作業] 男性BMI 判斷
請輸入身高(公尺):1.50
請輸入體重(公斤):50
你的BMI為:22.22
你的BMI分級為 正常範圍
作者:
蔡季樺
時間:
2015-10-9 08:57
本帖最後由 蔡季樺 於 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;
}
複製代碼
作者:
吳承勳
時間:
2015-10-12 17:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float height, weight, BMI;
re:
cout << "請輸入您的身高(公尺):";
cin >> height;
if(height >= 100)
{
cout << "你是巨人嗎?"<<endl;
goto re;
}else if(height < 0.3)
{
cout << "你是螞蟻?" << endl;
goto re;
}
re2:
cout << "請輸入您的體重(公斤):";
cin >> weight;
if(weight >= 500)
{
cout << "你是豬嗎?" <<endl;
goto re2;
}else if(weight <= 0.1)
{
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;
}
複製代碼
作者:
張文擇
時間:
2015-10-13 17:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float height,weight,BMI;
re:
cout<<"請輸入您的身高(公尺):";
cin>>height;
if(height>=45)
{
cout<<"你是火星人嗎?"<<endl;
goto re;
}else if(height<0.6)
{
cout<<"爛"<<endl;
goto re;
}
re2:
cout<<"請輸入您的體重(公斤):";
cin>>weight;
if(weight>=350)
{
cout<<"動物"<<endl;
goto re2;
}else if(weight<=15)
{
cout<<"胖虎"<<endl;
goto re2;
}
BMI=weight/(height*height);
cout<<"您的BMI值為:"<<BMI<<endl<<"您的BMI分級為:";
if(BMI<19.7)
{
cout<<"體重過輕!!"<<endl;
}else if(BMI>=19.7&&BMI<24)
{
cout<<"正常!"<<endl;
}else if(BMI>=24&&BMI<27)
{
cout<<"太重"<<endl;
}else if(BMI>=17&&BMI<20)
{
cout<<"跟女朋友ㄘㄟˋ !"<<endl;
}else if(BMI>=20&&BMI<25)
{
cout<<"處罰 一整年吃菜!"<<endl;
}else
{
cout<<"重度肥胖!送醫院!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-10-13 19:47
這是我改果的 請看這份
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float height,weight,BMI;
re:
cout<<"請輸入您的身高(公尺):";
cin>>height;
if(height>=45)
{
cout<<"你是火星人嗎? 請投100塊"<<endl;
goto re;
}else if(height<0.6)
{
cout<<"爛 請投100塊"<<endl;
goto re;
}
re2:
cout<<"請輸入您的體重(公斤):";
cin>>weight;
if(weight>=350)
{
cout<<"動物 請投100塊"<<endl;
goto re2;
}else if(weight<=15)
{
cout<<"胖虎 請投100塊"<<endl;
goto re2;
}
BMI=weight/(height*height);
cout<<"您的BMI值為:"<<BMI<<endl<<"您的BMI分級為:";
if(BMI<19.7)
{
cout<<"體重過輕!!請投100塊"<<endl;
}else if(BMI>=19.7&&BMI<24)
{
cout<<"正常!請投100塊"<<endl;
}else if(BMI>=24&&BMI<27)
{
cout<<"太重 請投100塊"<<endl;
}else if(BMI>=17&&BMI<20)
{
cout<<"跟女朋友ㄘㄟˋ請投100塊 !"<<endl;
}else if(BMI>=20&&BMI<25)
{
cout<<"處罰 一整年吃菜!請投100塊"<<endl;
}else
{
cout<<"重度肥胖!送醫院!請投100塊"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-10-13 19:51
回復
5#
張文擇
作者:
張健勳
時間:
2015-10-17 09:56
#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<<"矮胖子BJ4"<<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<<"體重過輕!!太瘦了啦 都變成受了XD"<<endl;
}else if(BMI>=18.5&&BMI<24)
{
cout<<"正常範圍!!要繼續保持唷M_<"<<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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2