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