Salut
def navi_composantes(x, y, z):
while 10*x > y:
x = (y*z)%10000
y = (3*z)%10000
z = (7*z)%10000
return x, y, z
Ou alors sans fonction
x = int(input())
y = int(input())
z = int(input())
print(x, y, z)
À toi de tester les valeurs avec la méthode de ton choix
Copyright © 2024 ELIBRARY.TIPS - All rights reserved.
Lista de comentários
Verified answer
Salut
def navi_composantes(x, y, z):
while 10*x > y:
x = (y*z)%10000
y = (3*z)%10000
z = (7*z)%10000
return x, y, z
Ou alors sans fonction
x = int(input())
y = int(input())
z = int(input())
while 10*x > y:
x = (y*z)%10000
y = (3*z)%10000
z = (7*z)%10000
print(x, y, z)
À toi de tester les valeurs avec la méthode de ton choix