#41272: python


suyueh (suyueh)

學校 : 不指定學校
編號 : 272111
來源 : [101.12.162.20]
最後登入時間 :
2024-10-31 21:27:57
a006. 一元二次方程式 | From: [125.229.229.84] | 發表日期 : 2024-07-16 13:46

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