Ajout des fichier exo 0

This commit is contained in:
2025-12-03 13:33:24 +01:00
parent 04711160ad
commit aa1e9ab878
4 changed files with 93 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
public class MonMaillon {
private Base base;
private MonMaillon next;
public MonMaillon(Base b, MonMaillon suivant) {
this.base = b;
this.next = suivant;
}
public Base getBase() {
return base;
}
public MonMaillon getNext() {
return next;
}
public void setNext(MonMaillon n) {
this.next = n;
}
}