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计算器的主要内容,如果未能解决你的问题,请参考以下文章