BUT2/DEV/DEV3.2/TP08_Arbres_suite/Q1_Tri/Q1Main.java

16 lines
448 B
Java
Raw Permalink Normal View History

2023-11-29 16:08:44 +01:00
public class Q1Main{
public static void main(String[] args){
try{
Q1Arbre arbre = new Q1Arbre();
for (String arg : args){
int n = Integer.parseInt(arg);
arbre.add(n);
}
arbre.affichage();
}
catch(NumberFormatException e){
System.out.println("NumberFormatException : Veuillez saisir des nombres en arguments");
}
}
}