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