Python:实现二次方程复数算法
from __future__ import annotations
from cmath import sqrt
def quadratic_roots(a: int, b: int, c: int) -
from __future__ import annotations
from cmath import sqrt
def quadratic_roots(a: int, b: int, c: int) -