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


Ta réponse :

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


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


Ta réponse :

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


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


Ta réponse :

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


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


Ta réponse :

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


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


Ta réponse :