Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
54439 | zhangweiran | 温度表达转化 | C++ | Accepted | 0 MS | 240 KB | 170 | 2024-10-28 11:55:23 |
#include<bits/stdc++.h> using namespace std; int main() { double f,c; cin >> f; c = 5*(f-32)/9; cout<<fixed<<setprecision(5)<<c; return 0; }