python-二次方程

導入 cmath模塊,計算複雜數學運算git eg: 咱們計算二次方程式 ax**2 + bx + c = 0web 代碼以下:svg import cmath a = float(input('輸入 a: ')) b = float(input('輸入 b: ')) c = float(input('輸入 c: ')) d = (b**2) - (4*a*c) # 兩種求解方式 so
相關文章
相關標籤/搜索