Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
56201 | 许兴平 | 温度表达转化 | C++ | Accepted | 0 MS | 252 KB | 144 | 2024-11-09 21:07:30 |
#include<bits/stdc++.h> using namespace std; int main(){ int a; cin>>a; cout<<fixed<<setprecision(5)<<5.0*(a-32)/9<<endl; return 0; }