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