#32638:


oddtea (兔子先生)

學校 : 不指定學校
編號 : 141028
來源 : [203.64.37.229]
最後登入時間 :
2022-11-04 09:01:59
a006. 一元二次方程式 | From: [203.68.59.190] | 發表日期 : 2022-10-25 00:44

a,b,c=map(int,(input().split()))
z=a*c*(-4)+b**2
e=((-1*b)+(z**(1/2)))/2
f=((-1*b)-(z**(1/2)))/2
if z==0:print("Two same roots x=%d"%e)
elif z<0:print("No real root")
else:
  if e>f:
    print("Two different roots x1=%d , x2=%d"%(e,f)) 
  else:print("Two different roots x1=%d , x2=%d"%(f,e))

感覺沒錯但卡住樂

 
#32668: Re: sos


cges30901 (cges30901)

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


e=((-1*b)+(z**(1/2)))/2
f=((-1*b)-(z**(1/2)))/2


公式的分母錯了...

 
ZeroJudge Forum