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

Private GIT Repository
initialisation
[cours-mesi.git] / tps / chap1 / tpfacto.py
1 from math import * 
2
3
4 def factorielle(n):
5     r = 1
6     i = 2
7     while i <= n :
8         r = r * i
9         i +=1
10     return r
11
12
13 for j in range(2,100):
14     k = factorielle(j)
15     #print (str(j) +" "+ str(k) )
16     print (str(j) +" "+ str(k) +" "+ str(type(k))+" "+str(log(k,2)))
17                    
18
19
20