Syntaxe : alg : Répétitive Répéter
Répéter
| instructions
Jusqu'à condition
Syntaxe : C/C++ : Répétitive Répéter
do {
instructions;
} while (!condition); //<- point-virgule
Syntaxe : Java : Répétitive Répéter
do {
instructions;
} while (!condition); //<- point-virgule
Syntaxe : Python : Répétitive Répéter
while True:
...
if not condition: break
...