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