Discuss / Python / 交作业

交作业

Topic source

DS猴

#1 Created at ... [Delete] [Delete and Lock User]
r=math.sqrt(b*b-4*a*c)
x1=(-b+r)/(2*a)
x2=(-b-r)/(2*a)
return x1,x2

  • 1

Reply