Liste des activités

SNT:cours de seconde.

Lycée Pyrène: Monsieur David Poutriquet.

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


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


							x=4
							y=-8*x-5
							if (y<=-5):
								resultat=-3
							elif (y>5):
								resultat=16
							else:
								resultat=3
								
							print(resultat)
							


Ta réponse :

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


							x=2
							y=-6*x+3
							if (y<=-5):
								resultat=-4
							elif (y>1):
								resultat=14
							else:
								resultat=4
								
							print(resultat)
							


Ta réponse :

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


							x=4
							y=2*x-3
							if (y<=-2):
								resultat=2
							elif (y>0):
								resultat=20
							else:
								resultat=-2
								
							print(resultat)
							


Ta réponse :

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


							x=6
							y=7*x+1
							if (y<=-3):
								resultat=11
							elif (y>0):
								resultat=20
							else:
								resultat=-11
								
							print(resultat)
							


Ta réponse :

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


							x=-6
							y=-5*x+6
							if (y<=-1):
								resultat=-6
							elif (y>3):
								resultat=18
							else:
								resultat=6
								
							print(resultat)
							


Ta réponse :