Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
44009 | yangtianqi | 温度表达转化 | C++ | Accepted | 0 MS | 248 KB | 132 | 2024-03-24 21:45:54 |
#include<bits/stdc++.h> using namespace std; int main(){ double f=41; double c; c = 5*(f-32)/9; printf("%.5lf",c); }