#34236: 請問是哪裡有錯嗎 測試一直顯示RE


aa159951753@gmail.com (xuan Xu)

學校 : 不指定學校
編號 : 225031
來源 : [125.228.222.16]
最後登入時間 :
2023-03-09 17:56:43
a006. 一元二次方程式 | From: [125.228.222.16] | 發表日期 : 2023-03-07 15:38

a,b,c=map(int,input().split())
root1=int((-b+(b**2-4*a*c)**0.5)//(2*a))
root2=int((-b-(b**2-4*a*c)**0.5)//(2*a))
if (b**2-4*a*c>0):
    print("Two different roots x1=",root1," , x2=",root2,sep="")
elif (b**2-4*a*c==0):
    print("Two same roots x=",root1,sep="")
else:
    print("No real root")
 
您的程式被監控系統中斷,可能是程式無法正常結束所導致。
Traceback (most recent call last):
  File "/11244278/code_11244278.py", line 2, in 
    root1=int((-b+(b**2-4*a*c)**0.5)//(2*a))
TypeError: can't take floor of complex number.
 
#34334: Re: 請問是哪裡有錯嗎 測試一直顯示RE


cges30901 (cges30901)

學校 : 不指定學校
編號 : 30877
來源 : [39.9.74.255]
最後登入時間 :
2024-10-14 22:20:08
a006. 一元二次方程式 | From: [101.137.28.221] | 發表日期 : 2023-03-11 20:34

a,b,c=map(int,input().split())
root1=int((-b+(b**2-4*a*c)**0.5)//(2*a))
root2=int((-b-(b**2-4*a*c)**0.5)//(2*a))
if (b**2-4*a*c>0):
    print("Two different roots x1=",root1," , x2=",root2,sep="")
elif (b**2-4*a*c==0):
    print("Two same roots x=",root1,sep="")
else:
    print("No real root")
 
您的程式被監控系統中斷,可能是程式無法正常結束所導致。
Traceback (most recent call last):
  File "/11244278/code_11244278.py", line 2, in 
    root1=int((-b+(b**2-4*a*c)**0.5)//(2*a))
TypeError: can't take floor of complex number.


先判斷b**2-4*a*c是否小於0

 
ZeroJudge Forum