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