2021-2022/2nd/14_Information_Chiffrée_2/velo.py
Bertrand Benjamin 0d5fa93605
All checks were successful
continuous-integration/drone/push Build is passing
Feat: reste les exercices sur l'évolution réciproque
2022-02-24 18:16:27 +01:00

8 lines
134 B
Python

annee = 0
montant = 100
while montant < 250:
annee = annee + 1
montant = montant * (1 + 10 / 100)
print(annee)
print(montant)