Exercice 1: static void score (int a, int b, int c, int d){ int p=0,q=0; if (c>=4) p++; if (d>=4) q++; if (a>b) {p+=4; if (a-b<8) q+=1;} else if (b>a) {q+=4; if (b-a<8) p+=1;} else {p+=2;q+=2;} System.out.println("A obtient " + p + " point(s)"); System.out.println("B obtient " + q + " point(s)"); } Exercice 2: a) static boolean estDiviseur (int a, int b){ return (b%a==0); } b) static boolean estDiviseur2 (int a, int b){ while (a