2次方程式の計算 2018年1月3日 by 河副 太智 Leave a Comment import cmath a = 12#aの数値 b = 23#bの数値 c = 25#cの数値 d = (b**2) - (4*a*c) sol1 = (-b-cmath.sqrt(d))/(2*a) sol2 = (-b+cmath.sqrt(d))/(2*a) print('結果 {0} と {1}'.format(sol1,sol2)) 1234567891011121314 import cmath a = 12#aの数値b = 23#bの数値c = 25#cの数値 d = (b**2) - (4*a*c) sol1 = (-b-cmath.sqrt(d))/(2*a)sol2 = (-b+cmath.sqrt(d))/(2*a) print('結果 {0} と {1}'.format(sol1,sol2)) Tweet [`yahoo` not found]
コメントを残す