Browse the glossary using this index

Special | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | ALL

S

Structure conditionnelle complète (SI-SINON)

Algorithmique
Langage C
SI (condition) ALORS
  instructions1
SINON instructions2
FINSI
if (condition{
  instructions1;
} else { instructions2;
}

Entry link: Structure conditionnelle complète (SI-SINON)

Structure conditionnelle multiple (SELON-CAS)

Algorithmique
Langage C
SELON variable
CAS valeur1 : instructions1
CAS valeur2 : instructions2
SINON : instructions_defaut

FINSELON
switch (variable{
case valeur1: instructions1;

break;
case valeur2: instructions2;

break;
default: instructions_defaut;

}

Entry link: Structure conditionnelle multiple (SELON-CAS)

Structure conditionnelle simple

Algorithmique
Langage C
SI (condition) ALORS
     instructions ;
FINSI
if (condition) {
  instructions ;
}

Entry link: Structure conditionnelle simple