#23104: 正解 ac的


ce5324 (伃)

學校 : 臺北市私立延平高級中學
編號 : 128513
來源 : [219.70.166.115]
最後登入時間 :
2021-06-06 21:44:53
e343. BMI 計算 | From: [203.72.178.252] | 發表日期 : 2020-10-22 17:40

#include <bits/stdc++.h> 

using namespace std;

int main()

{

double w,h;

while(cin>>w>>h)

{

h/=100;

cout<<fixed<<setprecision(1)<<w/(h*h)<<endl;

}

}

 
ZeroJudge Forum