Exemples d'instructions if

if (a > b) max = a; else max = b;

if (x > y)
   {
   ...          /*   liste d'instructions       */
   }
else 
   {
   ...          /*   liste d'instructions       */
   }

if (a)          /*   équivalent à if (a != 0)   */
   {
   ...
   }



Matthieu Moy 2017-02-08