Syntaxe : alg : Sélective Si-Sinon-Si
Si condition1 Alors
| instructions1
Sinon Si condition2 Alors
| instructions2
Sinon Si...
| ...
Sinon Si conditionN Alors
| instructionsN
Sinon
| instructionsSinon
FinSi
Syntaxe : C/C++ : Sélective Si-Sinon-Si
if (condition1)
{
instructionsA1;
}
else if (condition2)
{
instructionsA2;
}
else if...
...
else if (conditionN)
{
instructionsAn;
}
else
{
instructionsSinon;
}
Syntaxe : Java : Sélective Si-Sinon-Si
if (condition1)
{
instructionsA1;
}
else if (condition2)
{
instructionsA2;
}
else if...
...
else if (conditionN)
{
instructionsAn;
}
else
{
instructionsSinon;
}
Syntaxe : Python : Sélective Si-Sinon-Si
if condition1:
instructionsA1
elif condition2:
instructionsA2
elif ...
...
elif conditionN:
instructionsAn
else:
instructionsSinon