Files
DEV/DEV.2.1/TP/TP12-Flux-oct-Suite/3./Main.java

14 lines
268 B
Java
Raw Normal View History

2025-09-30 09:43:41 +02:00
public class Main {
public static void main(String[] args) {
Fenetre fenetre;
try {
if (args[0].equals("diviser")) {
fenetre = new Fenetre(false);
}
else {
fenetre = new Fenetre(true);
}
} catch (ArrayIndexOutOfBoundsException e) {
}
}
}