Les boucles :
-La boucle Tant que
tant que condition faire
instruction
Fin tant que
while (condition) {
instruction ;
}
la boucle Faire – Tant que
Faire
instruction
Tant que condition
do{
instruction ;
}while (condition) ;
La boucle pour
Pour indice allant de VD à VF faire
instruction
Fin pour
for (initialisation ; condition ; evolution){
instruction ;
}