python利用math数学函数求解一元二次方程系数

#一元二次方程系数求解 import math #引入数学函数 a,b,c = eval(input()) #定义变量 d = b ** 2 - 4 * a *...

最新推荐