#34102: .


yp11151230@yphs.tp.edu.tw (710-43蔡亞儒)

學校 : 臺北市私立延平高級中學
編號 : 197211
來源 : [203.72.178.1]
最後登入時間 :
2023-06-14 17:43:23
e343. BMI 計算 | From: [203.72.178.2] | 發表日期 : 2023-03-01 08:23

#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