提交时间:2024-01-22 17:01:12
运行 ID: 122960
#include <bits/stdc++>h> using namespace std; int main(){ int f; double c; cin >> f; c = 1.0 * 5 * (f - 32) / 9; cout << fixed << setprecision(2) << c; return 0; }