# suite de Syracuse : # Question 1 et 2 : n=int(input("Entrez un nombre entier naturel non nul :")) print("Nombre de départ : ",n) i=1 while n!=1: if n%2==0: n=n//2 else: n=3*n+1 print(n) i=i+1 print('Cette suite contient',i,'nombres') # Question 2 : amélioration du programme : ajout du compteur i dans le programme # Question 3 : NON # Question 4 : # Question 5 : # Question 6 : # Question 7 : # Question 8 : # Question 9 : # Question 10 : # Question 11 : # Question 12 :