Update Premiers.py
This commit is contained in:
parent
fa1d1dc4c7
commit
3a9bc7e4f9
@ -1,7 +1,10 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
import math #Importer le module math pour la racine carree
|
import math #Importer le module math pour la racine carree et l'arrondissement d'une valeur
|
||||||
|
|
||||||
#value = input("Jusqu'a quel nombre voulez-vous chercher un nombre premier ?")
|
#value = input("Jusqu'a quel nombre voulez-vous chercher un nombre premier ?")
|
||||||
|
#TODO List
|
||||||
|
#Ajouter un compteur de temps uniquement sur la partie cherchant les nombres premiers
|
||||||
|
#Ajouter un compteur de nombres premiers
|
||||||
|
|
||||||
value = 100000
|
value = 100000
|
||||||
|
|
||||||
@ -11,7 +14,6 @@ for i in range(2, int(math.ceil(math.sqrt(value)))):
|
|||||||
if tab[i] != -1:
|
if tab[i] != -1:
|
||||||
for j in range(i+1, value):
|
for j in range(i+1, value):
|
||||||
if tab[j] > 1:
|
if tab[j] > 1:
|
||||||
#print tab[i] % tab[j]
|
|
||||||
if tab[j] % tab[i] == 0:
|
if tab[j] % tab[i] == 0:
|
||||||
tab[j] = -1
|
tab[j] = -1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user