Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
109539 | 李朋秦 | 11温度转换II | C++ | Wrong Answer | 0 MS | 200 KB | 139 | 2025-02-09 14:40:20 |
#include<cstdio> //scanf()\printf() int main(){ double a; scanf("%lf",&a); printf("%.4lf",(a-32*5/9)); return 0; }
------Input------
9.8
------Answer-----
-12.3333
------Your output-----
-7.2000