| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 69808 | sh25_wuyy | 温度表达转化 | C++ | Accepted | 0 MS | 252 KB | 144 | 2025-10-11 17:35:35 |
#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; }