#22121: 為什麼過不了


zzzz100062@gmail.com (小小)

學校 : 不指定學校
編號 : 126333
來源 : [61.227.143.239]
最後登入時間 :
2020-09-05 12:40:02
a006. 一元二次方程式 | From: [218.166.162.183] | 發表日期 : 2020-08-12 14:55

import math        #math.sqrt()
    a,b,c= map(int,input().split());  #a,b,c=map(int,input().split())
    if (b*b)-4*a*c < 0:
        print("No real root")
    elif (b*b)-4*a*c >= 0:
        x1 = (-b+math.sqrt((b*b)-4*a*c))/2*a
        x2 = (-b-math.sqrt((b*b)-4*a*c))/2*a
        x1 = int(x1)
        x2 = int(x2)     
        if x1>x2:
            print("Two different roots ","x1=",x1,"x2=",x2)
        elif x2>x1:
            print("Two different roots ","x2=",x2,"x1=",x1)
        elif x1==x2:
            print("Two same roots","x=",x1)    
 
#22153: Re:為什麼過不了


hahahaiamhank (JUJUBE)

學校 : 不指定學校
編號 : 126607
來源 : [111.235.252.96]
最後登入時間 :
2020-12-08 17:13:16
a006. 一元二次方程式 | From: [203.72.178.252] | 發表日期 : 2020-08-13 14:25

import math        #math.sqrt()
    a,b,c= map(int,input().split());  #a,b,c=map(int,input().split())
    if (b*b)-4*a*c < 0:
        print("No real root")
    elif (b*b)-4*a*c >= 0:
        x1 = (-b+math.sqrt((b*b)-4*a*c))/2*a
        x2 = (-b-math.sqrt((b*b)-4*a*c))/2*a
        x1 = int(x1)
        x2 = int(x2)     
        if x1>x2:
            print("Two different roots ","x1=",x1,"x2=",x2)
        elif x2>x1:
            print("Two different roots ","x2=",x2,"x1=",x1)
        elif x1==x2:
            print("Two same roots","x=",x1)    


因為.........

 

 

 

 

 

好簡單ㄚ

 
ZeroJudge Forum