#23898: 6969


leo931101 (℗™§⁕⁂‱⁇‽⁜௹﷼₯ɸʬ)

學校 : 國立嘉義高級中學
編號 : 126498
來源 : [163.27.3.92]
最後登入時間 :
2020-09-13 18:36:54
e343. BMI 計算 | From: [163.27.3.89] | 發表日期 : 2020-12-31 09:13

#include <iostream>
#include<iomanip>
using namespace std;



 int main()
 {
     float w,h,a;
     while(cin>>w>>h)
     {
         a=h/100;
      cout<<fixed<<setprecision(1)<<w/(a*a)<<endl;
     }
     return 0;
 }
 
ZeroJudge Forum