提交时间:2024-09-22 22:19:51

运行 ID: 51632

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