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

C

Conditions imbriquées

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

Entry link: Conditions imbriquées

O

Opérateurs de comparaison

Algorithmique
Langage C
=
==
<> ou ≠
!=
< 
< 
> 
> 
<=
<=
>=
>=

Entry link: Opérateurs de comparaison

Opérateurs logiques

Algorithmique
Langage C
ET
&&
OU
||
NON
!

Entry link: Opérateurs logiques

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