Run ID:19601
提交时间:2021-11-15 16:50:58
#include <bits/stdc++.h> using namespace std; int main() { float F; cin>>F; cout<<setiosflags(ios::fixed)<<setprecision(2); cout<<(F-32)*5/9<<endl; return 0; }