题解 | #计算体重指数#
计算体重指数
http://www.nowcoder.com/practice/422f6341cf1b4212a7f8c703df111389
#include<stdio.h>
int main()
{
int a;
float b,c;
scanf("%d%f",&a,&b);
b=b/100;
c=a/(b*b);
printf("%.2f",c);
return 0;
}
\体重除了一百变成了小数要用浮点数。
计算体重指数
http://www.nowcoder.com/practice/422f6341cf1b4212a7f8c703df111389
#include<stdio.h>
int main()
{
int a;
float b,c;
scanf("%d%f",&a,&b);
b=b/100;
c=a/(b*b);
printf("%.2f",c);
return 0;
}
\体重除了一百变成了小数要用浮点数。
相关推荐