Syntaxe : alg : Répétitive Itérer
Itérer n Fois
| instructions
FinItérer
Syntaxe : C/C++ : Répétitive Itérer
for (j = 1; j <= n; ++j)
{
instructions;
}
Syntaxe : Java : Répétitive Itérer
for (int j = 1; j <= n; ++j)
{
instructions;
}
Syntaxe : Python : Répétitive Itérer
for j in range(1,n+1):
instructions