Discuss / Python / 交作业20200129 1324

交作业20200129 1324

Topic source

    if a == 0:

        x = -c/b

        return x

    else:

        x1 = (-b+math.sqrt(b*b-4*a*c))/(2*a)

        x2 = (-b-math.sqrt(b*b-4*a*c))/(2*a)

        return x1,x2


  • 1

Reply