Structures conditionnelles
IF THEN ELSE
If (condition)
{
DoSomething;
DoAnotherThing;
}
else
{
DoSomethingElse;
DoSomeOtherThing;
}
Remarque il est possible aussi de continuer par
....
else if (condition)
{
}
else if (condition2)
{
} etc....
SWITCH
Choisir une solution parmi plusieurs.
switch (numero)
{
case 0: {
//instructions pour numero=0
break;
}
case 1:
{
//instructions pour numero=1
break;
}
case 2:
{
//instructions pour numero=2
break;
}
}