Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91870 | 徐盛熠 | 06小数除法 | Python3 | Wrong Answer | 34 MS | 3740 KB | 96 | 2024-09-22 20:29:13 |
c=input().split() a=c[0] b=c[1] b=float(b) a=float(a) s=a/b s="{:.2f}".format(s) print(s)
------Input------
69.1 88
------Answer-----
69.10
------Your output-----
0.79