用C语言编写以下程序:BMI指数。BMI指数=体重()
时间: 2023-05-14 20:06:10 浏览: 172
C语言编写BMI指数计算器
5星 · 资源好评率100%
/身高的平方,其中体重以千克为单位,身高以米为单位。请编写一个程序,要求用户输入体重和身高,然后计算并输出BMI指数。*/
#include <stdio.h>
int main() {
float weight, height, bmi;
printf("请输入您的体重(kg):");
scanf("%f", &weight);
printf("请输入您的身高(m):");
scanf("%f", &height);
bmi = weight / (height * height);
printf("您的BMI指数为:%.2f\n", bmi);
return 0;
}
阅读全文