Voici, un algorithme en Python , qu'affiche cet algorithme?
x=1 y=-6*x+9 z=6*y+5 z=z+y print(z)
x=0 y=9*x+2 z=-3*y-1 z=z+y print(z)
x=0 y=-4*x-6 z=-3*y-4 z=z+y print(z)
x=3 y=2*x+9 z=8*y+7 z=z+y print(z)
x=2 y=7*x-8 z=-4*y-2 z=z+y print(z)