public class Main { public static void main(String[] args) { if (args.length < 2) { System.out.println("Utilisation incorecte: "+args[0]+" arg1 arg2 ...\nExemple: "+args[0]+" 1 4 5 3 8"); } else { ArbreBinaireRecherche arbre = new ArbreBinaireRecherche(); for (String string : args) { arbre.add(Integer.parseInt(string)); } } } }