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