Les Structures de Contrôle Itératives
Les Structures de Contrôle Itératives
Les Structures de Contrôle Itératives
Algorithme affiche
Début
Ecrire("informatique")
Ecrire("informatique")
Ecrire("informatique")
Ecrire("informatique")
Ecrire("informatique")
Ecrire("informatique")
Ecrire("informatique")
Ecrire("informatique")
Ecrire("informatique")
Ecrire("informatique")
Fin.
Constatation : répétition de la même instruction plusieurs fois ➔ algorithme très long !!!
Solution :
Comment ?
Algorithme affiche
Début
pour i de 0 à 10 faire
écrire("informatique")
fin pour
Fin.
NESRINE HLILOU 1
LES STRUCTURES DE CONTRÔLE ITÉRATIVES
Application 1 : écrire un programme qui affiche tous les entiers pairs <= 20.
NESRINE HLILOU 2
LES STRUCTURES DE CONTRÔLE ITÉRATIVES
NESRINE HLILOU 3
LES STRUCTURES DE CONTRÔLE ITÉRATIVES
Implémentation en python :
La boucle "répéter … jusqu’à" n’existe pas en python !
On utilise alors la boucle tant que = while
1ère méthode :
n=0
while(n <= 0): #ou bien while not (n > 0):
n=int(input('taper un entier strictement positif'))
print("n=",n)
2ème méthode :
n= int(input('taper un entier strictement positif'))
while(n <= 0): #ou bien while not (n > 0):
n=int(input(n doit être strictement positif'))
print("n=",n)
NESRINE HLILOU 4