Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
51632 | 张思存 | 温度表达转化 | C++ | Accepted | 0 MS | 244 KB | 170 | 2024-09-22 22:19:51 |
#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; }