Glossaire du langage algorithmique et traductions
Répétitive TantQue

Syntaxealg : Répétitive TantQue

TantQue condition Faire

| instructions

FinTantQue

SyntaxeC/C++ : Répétitive TantQue

while (condition)

{

instructions;

}

SyntaxeJava : Répétitive TantQue

while (condition)

{

instructions;

}

SyntaxePython : Répétitive TantQue

while condition:

  instructions