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