#19301: __答案


yp10870713 (銣)

學校 : 臺北市私立延平高級中學
編號 : 104321
來源 : [111.235.252.96]
最後登入時間 :
2021-04-23 16:27:46

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

int main()
{
double f;
cin>>f;
cout<<fixed<<setprecision(3)<<(f-32)*5/9<<endl;
return 0;
}