| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76621 | sh25_zhangjiajia | 温度表达转化 | C++ | Accepted | 0 MS | 240 KB | 160 | 2025-12-19 15:39:16 |
#include <bits/stdc++.h>; using namespace std; int main() { double f; cin >> f; cout << fixed<<setprecision(5)<<5*(f-32)/9; return 0; }