Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
43842 | wangyuchun | 温度表达转化 | C++ | Wrong Answer | 0 MS | 236 KB | 154 | 2024-03-23 12:28:44 |
#include<bits/stdc++.h> using namespace std; int main(){ int f,c; cin>>f; c=5*(f-32)/9; cout<<fixed<<setprecision(5)<<c; return 0; }