Discuss / Python / 打卡

打卡

Topic source

TN

#1 Created at ... [Delete] [Delete and Lock User]
    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