题解 | 计算体重指数
计算体重指数
https://www.nowcoder.com/practice/422f6341cf1b4212a7f8c703df111389
此题注意身高单位由厘米转为米
#include <stdio.h>
int main() {
float a, b;
scanf("%f %f", &a, &b);
b=b/100;
float res = a/(b*b);
printf("%.2f",res);
return 0;
}
