Glossaire du langage algorithmique et traductions
Répétitive Itérer

Syntaxealg : Répétitive Itérer

Itérer n Fois

| instructions

FinItérer

SyntaxeC/C++ : Répétitive Itérer

for (j = 1; j <= n; ++j)

{

instructions;

}

SyntaxeJava : Répétitive Itérer

for (int j = 1; j <= n; ++j)

{

instructions;

}

SyntaxePython : Répétitive Itérer

for j in range(1,n+1):

  instructions