Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
102040 | 李佳璟 | 11温度转换II | C++ | Wrong Answer | 1 MS | 272 KB | 152 | 2024-12-21 11:34:20 |
#include<bits/stdc++.h> #include<cmath> using namespace std; int main(){ double c,f; cin>>f; c=(f-32)/(9/5); printf("%.4f",c); return 0; }
------Input------
9.8
------Answer-----
-12.3333
------Your output-----
-22.2000