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

Syntaxealg : Répétitive Répéter

Répéter

| instructions

Jusqu'à condition

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

do {

instructions;

} while (!condition); //<- point-virgule

SyntaxeJava : Répétitive Répéter

do {

instructions;

} while (!condition); //<- point-virgule

SyntaxePython : Répétitive Répéter

while True:

  ...

  if not condition: break

  ...