| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 139735 | 徐康浩 | 11温度转换II | C++ | Wrong Answer | 0 MS | 276 KB | 123 | 2025-12-08 17:13:27 |
#include <iostream> using namespace std; int main(){ float F,c; cin>>F; c=F-32*5.0/9.0; printf("%.4f",c); }
------Input------
9.8
------Answer-----
-12.3333
------Your output-----
-7.9778