import java.util.Arrays;
import java.util.Collections;
public class TriInverse
{
public static void main(String args[])
{
String[] tableau_string = new String[] { "J", "Z", "A", "N", "X" };
// Trier le tableau
Arrays.sort (tableau_string, Collections.reverseOrder());
// Afficher le tableau sous forme d'une chaîne
System.out.println(Arrays.toString(tableau_string));
}
}
//[Z, X, N, J, A]