#include <bits/stdc++.h>
using namespace std;
int main()
{
double height,weight,bmi;
cout << "体重(公斤):" ;
cin>>weight;
cout << "身高(米):" ;
cin>>height;
bmi=weight/(height*height);
if(bmi<18.5)
{
cout<<"偏瘦";
}
else if(bmi<24)
{
cout<<"正常";
}
else if(bmi<28)
{
cout<<"偏胖";
}
else if(bmi<40)
{
cout<<"肥胖";
}
else
{
cout<<"极重度肥胖";
}
cout<<endl;
system("pause");
return 0;
}
0.0分
1 人评分
C二级辅导-求偶数和 (C语言代码)浏览:632 |
C二级辅导-统计字符 (C语言代码)浏览:577 |
C语言程序设计教程(第三版)课后习题8.4 (Java代码)浏览:788 |
简单的a+b (C语言代码)浏览:764 |
C语言训练-求函数值 (C语言代码)浏览:976 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
printf基础练习2 (C语言代码)浏览:321 |
printf基础练习2 (C语言代码)浏览:826 |
WU-陶陶摘苹果2 (C++代码)浏览:1018 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |