Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
50676 | zhouziyue | 温度表达转化 | C++ | Compile Error | 0 MS | 0 KB | 172 | 2024-09-07 15:46:09 |
include<iostream> #include<iomanip> using namespace std; int main () { int f; double c; cin>>f; c=5*(f-32)/9; cout<<fixed<<setprecision(5)<<c; }