Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
8150 | 邓小龙 | 11温度转换II | C++ | Wrong Answer | 0 MS | 268 KB | 134 | 2025-06-14 19:54:18 |
#include<bits/stdc++.h> using namespace std; int main(){ int F; cin>>F; printf("%.4lf",(F-32)/1.8); return 0; }
------Input------
4.8
------Answer-----
-15.1111
------Your output-----
-15.5556