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