题解 | #计算体重指数#
计算体重指数
http://www.nowcoder.com/practice/422f6341cf1b4212a7f8c703df111389
#include<bits/stdc++.h> using namespace std; int main(){ int weight; int high; cin>>weight>>high; float high1=high/100.; float BMI=weight/(high1*high1); cout<<fixed<<setprecision(2)<<BMI<<endl; return 0; }