Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51416 | fengxiaohang | 温度表达转化 | C++ | Accepted | 1 MS | 244 KB | 162 | 2024-09-21 18:21:38 |
#include <bits/stdc++.h> using namespace std; int main() { double f; cin>>f; double c=5*(f-32)/9; cout<<fixed<<setprecision(5)<<c<<endl; }