Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
33014 | teacher_lu | 温度表达转化 | C++ | 通过 | 1 MS | 244 KB | 156 | 2023-12-04 19:51:27 |
#include <bits/stdc++.h> using namespace std; int main(){ double f; cin >> f; cout << fixed << setprecision(5) << 5*(f-32)/9; return 0; }