Syntaxe : alg : Sélective Si
Si condition Alors
| instructionsAlors
Sinon
| instructionsSinon
FinSi
Syntaxe : C/C++ : Sélective Si
if (condition)
{
instructionsAlors;
}
else
{
instructionsSinon;
}
Syntaxe : Java : Sélective Si
if (condition)
{
instructionsAlors;
}
else
{
instructionsSinon;
}
Syntaxe : Python : Sélective Si
if condition:
instructionsAlors
else:
instructionsSinon