Please check my code because my coding play ground is not working. Topic- Solve Quadratic equation | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
0

Please check my code because my coding play ground is not working. Topic- Solve Quadratic equation

import cmath a = 1 b = 5 c = 6 d = (b**2) - (4*a*c) sol1 = (-b-cmath.sqrt(d))/(2*a) sol2 = (-b+cmath.sqrt(d))/(2*a) print('The solution are {0} and {1}'.format(sol1,sol2))

17th May 2021, 3:18 PM
Om Rathore
Om Rathore - avatar
3 Respostas
0
What's the problem ? it gives solution -2 & -3
17th May 2021, 3:23 PM
Ayush Kumar
Ayush Kumar - avatar
0
Actually, my coding play ground isn't working
17th May 2021, 3:24 PM
Om Rathore
Om Rathore - avatar
0
Is it correct
17th May 2021, 3:24 PM
Om Rathore
Om Rathore - avatar