From a277c2775328918a9f4ad8f6fd8d48840faeff09 Mon Sep 17 00:00:00 2001 From: Juan Date: Thu, 9 Dec 2021 13:22:30 +0100 Subject: [PATCH] suite cours 1 d'algo + exemple javascript : while / do while --- b1-algo/c1-ALGORITHMIQUE.md | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/b1-algo/c1-ALGORITHMIQUE.md b/b1-algo/c1-ALGORITHMIQUE.md index 3faeedd..d2550da 100644 --- a/b1-algo/c1-ALGORITHMIQUE.md +++ b/b1-algo/c1-ALGORITHMIQUE.md @@ -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.