WA:
cout<<setprecision(2)<<BMR<<endl;
C++會輸出科學符號
ans:7.7e+02
AC:
printf("%.2lf\n",BMR);C會輸出浮點數ans:770.00