Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
92330 | 徐盛熠 | 11温度转换II | Python3 | Wrong Answer | 34 MS | 3736 KB | 88 | 2024-09-29 18:59:09 |
a=input().split() c=a[0] c=float(c) f=c*9//5+32 f="{:.4f}".format(f) print(f)
------Input------
9.8
------Answer-----
-12.3333
------Your output-----
49.0000