ecuaciones de segundo grado con phyton

Solutions on MaxInterview for ecuaciones de segundo grado con phyton by the best coders in the world

showing results for - "ecuaciones de segundo grado con phyton"
Héloïse
20 Jun 2016
1from math import sqrt
2
3A = int(input("Ingrese el coeficiente de la variable cuadrática\n"))
4B = int(input("Ingrese el coeficiente de la variable lineal\n"))
5C = int(input("Ingrese el término independiente\n"))
6x1= 0
7x2= 0
8
9if ((B**2)-4*A*C) < 0:
10  print("La solución de la ecuación es con números complejos")
11else:
12  x1 = (-B+sqrt(B**2-(4*A*C)))/(2*A)
13  x2 = (-B-sqrt(B**2-(4*A*C)))/(2*A)
14  print("Las soluciones de la ecuación son:")
15  print(x1)
16  print(x2)