/** Classe servant à tester une méthode de tri par sélection */ class Tri { static int [] aTrier = { 0, 8, 9, 1, 7, 6, 4, 5, 2, 3 }; // tableau a trier pour experimenter la methode static void triSelection ( int [] donnees ) { /** Fonction realisant le tri par Selection du tableau qui lui est donne en parametre */ /* À COMPLETER */ } public static void main ( String [] arg ) { // fait afficher le tableau avant et apres le tri afficher ( aTrier); triSelection ( aTrier ); afficher ( aTrier); } }