编写题解 1112: C语言考试练习题_一元二次方程(哈哈哈,笨比写法)
摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())q=b*b-4*a*cm=(-b+pow(q,0.5))/2n=(-b-pow(q,0.5))/2if q>0……
编写题解 1112: C语言考试练习题_一元二次方程
摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input().split())deta = (b**2 - 4*a*c)**(1/2)x1 = (-b + deta)/(2*a)x2 ……
还是比较简单的,昨天还以为我通关了想太多了
摘要:解题思路:注意事项:参考代码:a,b,c=map(int,input().split())dta=b**2-4*a*cif dta>=0: x1=((-1)*b+dta**(1/2))/(2*a……
编写题解 1112: C语言考试练习题_一元二次方程(python)
摘要:运用一元二次求根公式即可,无需考虑无实数解的情况a,b,c = map(int, input().split())
x1 = (-b + pow(pow(b, 2) - 4 * a * c, 0.5……
编写题解 1112: C语言考试练习题_一元二次方程
摘要:解题思路:注意事项:参考代码:import matha,b,c=map(float,input().split())x = -math.sqrt(-c+(b/2*a)**2)-b/2*ay = mat……
1112: C语言考试练习题_一元二次方程-题解(python)
摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input().split())m = b**2 - 4*a*cm = m**(0.5)x = (-b + m)/2y = (-b - m……