标签:col div class a* pre mat span style 函数
#求一元二次方程的解 import math def equation(a,b,c): h=b*b-4*a*c #一元二次方程的解,百度来的 if h>=0: x1=(-b+math.sqrt(h))/2*a #sqrt函数求平方根 x2=(-b-math.sqrt(h))/2*a print(‘x1=%.2f‘%x1,‘x2=%.2f‘%x2) else: print(‘方程无解‘) equation(1,2,1)
标签:col div class a* pre mat span style 函数
原文地址:https://www.cnblogs.com/lengjf/p/9823381.html