提交时间:2023-01-20 17:43:59

运行 ID: 6127

#include<bits/stdc++.h> using namespace std; int main() { float f,c; cin>>f; c=5*(f-32)/9; cout<<fixed<<setprecision(5)<<c; return 0; }