#32540: 試了好多次,能幫我看下嗎QAQ(python)


JimTsao (LIANG)

學校 : 臺北市立大理高級中學
編號 : 200115
來源 : [49.158.46.207]
最後登入時間 :
2022-10-23 08:20:09
a273. 小朋友下樓梯 | From: [27.247.230.29] | 發表日期 : 2022-10-19 13:07

while True:

 try:

  a,b=map(int,input().split())

  if (a%b==0 and b!=0) or (a==0 and b==0):

   print("Ok!")

  else:

   print("Impossib1e!")

 except:

  break

 
#32586: Re: 試了好多次,能幫我看下嗎QAQ(python)


cges30901 (cges30901)

學校 : 不指定學校
編號 : 30877
來源 : [39.9.74.255]
最後登入時間 :
2024-10-14 22:20:08
a273. 小朋友下樓梯 | From: [27.53.233.124] | 發表日期 : 2022-10-22 19:25

 

  if (a%b==0 and b!=0) or (a==0 and b==0):

 


a%b==0和b!=0交換順序,你這樣寫如果b是0會出現除以0的錯誤

 
ZeroJudge Forum