Solution de l’exercice 1.3

Pas besoin de y :

int abs(int x){     if (x < 0) return -x else return x;}

Retour au texte.