Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91788 | 徐梓涵 | 06小数除法 | Python3 | Wrong Answer | 32 MS | 3736 KB | 91 | 2024-09-22 15:04:12 |
s=input().split() a=s[0] b=s[1] a=float(a) b=float(b) a='{:.2f}'.format(a/b) print(a)
------Input------
69.1 88
------Answer-----
69.10
------Your output-----
0.79