题解 | #计算体重指数#
计算体重指数
http://www.nowcoder.com/practice/422f6341cf1b4212a7f8c703df111389
#include<stdio.h> int main(){ int a,b; scanf("%d %d",&a,&b); float c=b/100.0; float BMI=a/c/c; printf("%.2f",BMI); return 0; }
计算体重指数
http://www.nowcoder.com/practice/422f6341cf1b4212a7f8c703df111389
#include<stdio.h> int main(){ int a,b; scanf("%d %d",&a,&b); float c=b/100.0; float BMI=a/c/c; printf("%.2f",BMI); return 0; }
相关推荐