Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
104480 | 王子毅 | 11温度转换II | C++ | Wrong Answer | 0 MS | 276 KB | 169 | 2025-01-05 10:58:58 |
#include<iostream> #include<cstdio> using namespace std; int main() { int f,c; cin>>f; c =(f-32)*5/9; printf("%.4f\n",c); return 0; }
------Input------
9.8
------Answer-----
-12.3333
------Your output-----
0.0000