编写一个体重测量仪,要求从键盘输入身高和体重后,能够计算出体重指数,输入、输出要有单位。

体重指数=体重(KG)/(身高*2)。。。。帮我解决哈,谢谢啦,!!

第1个回答  2012-08-16
int main()
{
double height,weight;
double BMI;//身高体重指标
printf("Plese input your height,the unit is Cm:\n");
scanf("%lf",&height);
printf("Plese input your weight,the unit is Kg:\n");
scanf("%lf",&weight);
BMI = weight/((height/100)*(height/100));
printf("Your BMI is:%lf\n",BMI);
printf("You can contrast next list.");
printf("Slants thin: BMI < 18\n");
printf("Normal: BMI = 18~25\n");
printf("Overweight: BMI = 25~30\n");
printf("Mild obesity : BMI > 30\n");
printf("Moderate obesity : BMI > 35\n");
printf("Severe obesity : BMI > 40\n");
return 0;
}本回答被网友采纳
第2个回答  2012-08-16
怎么发给你,写完了 ,有界面的
相似回答