--> Python ∼ Boucle while a = 10 taux = 5.0 n = 0 while a < 100: n = n + 1 a = a*(1+taux/100) print(n)