Glossaire du langage algorithmique et traductions
Sélective Si-Sinon-Si

Syntaxealg : Sélective Si-Sinon-Si

Si condition1 Alors

| instructions1

Sinon Si condition2 Alors

| instructions2

Sinon Si...

| ...

Sinon Si conditionN Alors

| instructionsN

Sinon

| instructionsSinon

FinSi

SyntaxeC/C++ : Sélective Si-Sinon-Si

if (condition1)

{

instructionsA1;

}

else if (condition2)

{

instructionsA2;

}

else if...

...

else if (conditionN)

{

instructionsAn;

}

else

{

instructionsSinon;

}

SyntaxeJava : Sélective Si-Sinon-Si

if (condition1)

{

instructionsA1;

}

else if (condition2)

{

instructionsA2;

}

else if...

...

else if (conditionN)

{

instructionsAn;

}

else

{

instructionsSinon;

}

SyntaxePython : Sélective Si-Sinon-Si

if condition1:

  instructionsA1

elif condition2:

  instructionsA2

elif ...

...

elif conditionN:

  instructionsAn

else:

  instructionsSinon