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