]> AND Private Git Repository - cours-mesi.git/blob - tps/chap1/tpequa.py
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
j
[cours-mesi.git] / tps / chap1 / tpequa.py
1 from math import * 
2
3
4 a = input("valeur de a : ") 
5 b = input("valeur de b : ") 
6 c = input("valeur de c : ") 
7
8 delta = b**2 - 4*a*c
9 print "delta :", delta, "b^2 :",b**2
10
11 if (delta>= 0) :
12     x1 = float((-b - sqrt(delta)))/(2*a)
13     x2 = float((-b + sqrt(delta)))/(2*a)
14     print "numerateur de x2", -b + sqrt(delta)
15     x2b = 1/float(x1)
16     print "x1 :",x1,", x2 : ",x2,",x2 bis : ", x2b
17
18
19