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=0
							y=2*x+3
							if (y<=1):
								resultat=-9
								print(resultat)
							else:
								resultat=9
								print(resultat)
							


Ta réponse :

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


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


Ta réponse :

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


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


Ta réponse :

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


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


Ta réponse :

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


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


Ta réponse :