Run ID |
作者 |
问题 |
语言 |
测评结果 |
Time |
Memory |
代码长度 |
提交时间 |
91573 |
张泽一 |
11温度转换II |
Python3 |
Wrong Answer |
34 MS |
3748 KB |
67 |
2024-09-22 10:28:50 |
Tests(0/10):
Code:
a=input()
a=int(a)
b=(a-32)*1.8
sb="{:.4f}".format(b)
print(sb)
Run Info:
------Input------
9.8
------Answer-----
-12.3333
------Your output-----