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