表达式求值

import math  
a,b,c = 5,8,3  
x = (math.sqrt(b*b-4*a*c)-b)/(2*a)  
print("{}".format(x))

 

posted @ 2020-04-14 21:59  林晓婷  阅读(161)  评论(0)    收藏  举报