Product SiteDocumentation Site

4.9. quadraticequation.py

ക്വാര്‍ഡിയാക് സൂത്രവാക്യം വിലയിരുന്നതിനുളള ഒരു പ്രോഗ്രാം കാണുക

#!/usr/bin/env python
import math
a = int(raw_input("Enter value of a: "))
b = int(raw_input("Enter value of b: "))
c = int(raw_input("Enter value of c: "))
d = b * b - 4 * a * c
if d < 0:
    print "ROOTS are imaginary"
else:
    root1 = (-b + math.sqrt(d)) / (2.0 * a)
    root2 = (-b - math.sqrt(d)) / (2.0 * a)
print "Root 1 = ", root1
print "Root 2 = ", root2