Réponse :
Bjr, attention aux indentations dans python (il faut faire 4 espaces et pas de tabulation)
Explications étape par étape
S = 1900
x = 0
y = 0
z = 0
while (x + y + z < S):
y = x + 70
z = 2*x - 150
x += 1
print("personne 1 ",x-1," personne 2" ,y," personne 3" ,z)
ca donne
personne 1 495 personne 2 565 personne 3 840
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
Verified answer
Réponse :
Bjr, attention aux indentations dans python (il faut faire 4 espaces et pas de tabulation)
Explications étape par étape
S = 1900
x = 0
y = 0
z = 0
while (x + y + z < S):
y = x + 70
z = 2*x - 150
x += 1
print("personne 1 ",x-1," personne 2" ,y," personne 3" ,z)
ca donne
personne 1 495 personne 2 565 personne 3 840