C语言写bmi计算器

Posted 1728067596wc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C语言写bmi计算器相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
int main()
float BMI;
float weight;
float height;
float bmi;
printf("pleaae input the weight:");
scanf("%f", &weight);
printf("please input the height:");
scanf("%f", &height);
bmi= weight / (height * height);
printf("your BIM is %f",bmi);
if(bmi<18.5)printf("偏轻");
if(bmi>18.5&&bmi<24.9)printf("正常") ;
if(bmi>25&&bmi<29.9)printf("偏重") ;
if(bmi>30)printf("超重") ;
return 0;

以上是关于C语言写bmi计算器的主要内容,如果未能解决你的问题,请参考以下文章

GolangStudy-004-BMI计算器

谁能帮我检查一下我的BMI计算器? (C#)

《Python之BMI计算》

C语言:输入身高和体重,按照。体质指数(BMI)=体重(KG)除以身高(m)的平方

计算SUM的值

如何用Python计算BMI值?