#23251: 來看我答案


leon5382003@gmail.com (陳宥霖)

學校 : 南投縣私立普台高級中學
編號 : 119176
來源 : [114.136.189.191]
最後登入時間 :
2023-07-26 13:54:52
a006. 一元二次方程式 | From: [1.165.63.140] | 發表日期 : 2020-11-01 20:46

while True:
    try:
        a, b, c = map(int, input().split())
        D = b ** 2 - 4 * a * c
        if D > 0:
            x1 = int((-b + D ** 0.5) / (2 * a))
            x2 = int((-b - D ** 0.5) / (2 * a))
            print("Two different roots x1=" + str(x1) + " , x2=" + str(x2))
        elif D == 0:
            x = int(-b / (2 * a))
            print("Two same roots x=" + str(x))
        else:
            print("No real root")
    except:
        break
 
ZeroJudge Forum