استعراض قاموس المصطلحات باستعمال الفهرس

خاص | 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 | أ | إ | آ | ا | ب | ت | ث | ج | ح | خ | د | ذ | ر | ز | س | ش | ص | ض | ط | ظ | ع | غ | ف | ق | ك | ل | م | ن | ه | و | ي | الكل

S

Structure conditionnelle complète (SI-SINON)

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

رابط المصطلح: 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;

}

رابط المصطلح: Structure conditionnelle multiple (SELON-CAS)

Structure conditionnelle simple

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

رابط المصطلح: Structure conditionnelle simple