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