a除以b

a=float(input())
b=float(input())
if(b==0):
  print("除零错误")
else :
           print(round(a/b,2))

 

posted @ 2020-03-30 20:47  李嘉豪28  阅读(385)  评论(0)    收藏  举报