Run ID:116138
提交时间:2025-04-06 14:29:03
#include <bits/stdc++.h> using namespace std; int main(){ float F,C; cin>>F; C=(F-32)*5/9; cout<<fixed<<setprecision(4)<<C<<endl; }