| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 43947 | zhangyanshuo | 温度表达转化 | C++ | Accepted | 1 MS | 252 KB | 133 | 2024-03-24 10:54:38 |
#include<bits/stdc++.h> using namespace std; int main() { int F; cin>>F; printf("%.5lf",(double)5*(F-32)/9); return 0; }