This commit is contained in:
EmmanuelTiamzon
2025-10-13 13:08:06 +02:00
parent 1e25b6a3ae
commit 84332c8c08
11 changed files with 22 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
public class Main {
public static void main(String[] args) {
}
}

View File

@@ -0,0 +1,14 @@
public class Question {
private String[] operation;
private int operand;
public Question() {
this.operation[] = {" + "," - "," x "," / "};
}
public int choixOperand() {
System.out.println("coucou manu");
return this.operand;
}
}