#34729: __正解


yp11151209@yphs.tp.edu.tw (802-41)

學校 : 臺北市私立延平高級中學
編號 : 224619
來源 : [203.72.178.1]
最後登入時間 :
2023-11-03 16:22:30

#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
    double f;
    cin>>f;
    cout<<fixed<<setprecision(3)<<(f-32) *5/9<<endl;
    return 0;
}