Syntaxe : alg : Répétitive TantQue
TantQue condition Faire
| instructions
FinTantQue
Syntaxe : C/C++ : Répétitive TantQue
while (condition)
{
instructions;
}
Syntaxe : Java : Répétitive TantQue
while (condition)
{
instructions;
}
Syntaxe : Python : Répétitive TantQue
while condition:
instructions