#25785: 笑死 我ac


justinli (安茲 烏爾 恭)

學校 : 臺北市立西松高級中學
編號 : 93947
來源 : [140.136.59.31]
最後登入時間 :
2025-09-30 09:21:46

 

#include<iostream> #include<iomanip> using namespace std; int main() {

double w , h; while( cin >> w >> h ) { h /= 100; cout << fixed << setprecision( 1 ) << w / ( h * h ) << endl; } }