Liste des activités

SNT:cours de seconde.

Lycée Pyrène: Monsieur David Poutriquet.

Activité automatismes: Instructions if..else.. niveau 1.


Voici, un algorithme en Python , qu'affiche cet algorithme?


							x=8
							y=-4*x-3
							if (y<=4):
								resultat=12
								print(resultat)
							else:
								resultat=-12
								print(resultat)
							


Ta réponse :

Voici, un algorithme en Python , qu'affiche cet algorithme?


							x=3
							y=7*x+5
							if (y<=-4):
								resultat=3
								print(resultat)
							else:
								resultat=-3
								print(resultat)
							


Ta réponse :

Voici, un algorithme en Python , qu'affiche cet algorithme?


							x=8
							y=-2*x+4
							if (y<=-2):
								resultat=-5
								print(resultat)
							else:
								resultat=5
								print(resultat)
							


Ta réponse :

Voici, un algorithme en Python , qu'affiche cet algorithme?


							x=4
							y=3*x+2
							if (y<=3):
								resultat=-3
								print(resultat)
							else:
								resultat=3
								print(resultat)
							


Ta réponse :

Voici, un algorithme en Python , qu'affiche cet algorithme?


							x=-4
							y=3*x-1
							if (y<=-2):
								resultat=-3
								print(resultat)
							else:
								resultat=3
								print(resultat)
							


Ta réponse :