Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1095 | 林澍杰 | 11温度转换II | C++ | Wrong Answer | 0 MS | 260 KB | 116 | 2023-07-08 14:27:23 |
#include<iostream> using namespace std; int main (){ int c,f; cin>>f; printf("%.4f",(f-32)*5/9); return 0; }
------Input------
4.8
------Answer-----
-15.1111
------Your output-----
0.0000