c语言计算bmi指数
时间: 2023-07-13 19:24:35 浏览: 447
C语言编写BMI指数计算器
5星 · 资源好评率100%
好的,以下是一个简单的 C 语言程序,可以计算 BMI 指数:
```c
#include <stdio.h>
int main() {
float weight, height, bmi;
printf("请输入体重(kg):");
scanf("%f", &weight);
printf("请输入身高(米):");
scanf("%f", &height);
bmi = weight / (height * height);
printf("您的 BMI 指数为:%.2f\n", bmi);
return 0;
}
```
运行程序后,会提示用户输入体重和身高,然后计算出 BMI 指数并输出。其中 `%.2f` 表示保留两位小数输出。
阅读全文