| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 71043 | sh25_wangtaojie | 温度表达转化 | C++ | 通过 | 0 MS | 244 KB | 213 | 2025-10-24 14:29:32 |
#include <iostream> #include <iomanip> using namespace std; int main() { double f, c; cin >> f; c = 5.0 * (f - 32) / 9.0; cout << fixed << setprecision(5) << c << endl; return 0; }