suite cours 1 d'algo + exemple javascript : while / do while

master
Juan 3 years ago
parent c968612d5f
commit a277c27753

@ -68,9 +68,9 @@ un structure est une technique "d'embranchement".
```
si (condition) alors
_action 1_
_action 1_
sinon
_action 2_
_action 2_
fin si
```
@ -111,6 +111,34 @@ fin pour;
afficher resultat;
```
- tant que
exécuter des actions tant qu'une condition est respectée.
```
variable choix chaine;
choix = "oui"
tant que choix == "oui" faire
_action 1_
_action 2_
afficher "continuer ?";
lire choix;
fin tantque;
```
- faire tant que (do-while)
exécuter des actions tant qu'un condition est respectée, mais au moins une fois
```
variable choix chaine;
faire
_action 1_
_action 2_
afficher "continuer ?";
lire choix;
tant que choix == "oui";
```
## instructions :
un instruction est un élément de programmation "standard" dans la majorité des languages.

Loading…
Cancel
Save