Copiez le code comme suit :
importer java.util.Arrays ;
importer java.util.Scanner ;
classe publique MaxOf3_2 {
/*
* Obtenez le plus grand entier
*/
public static int getMaxNum(int...a){
Tableaux.sort(a);
int maxNum = a[a.length-1];
retourner maxNum ;
}
}