11 lines
161 B
Java
11 lines
161 B
Java
|
public class NoeudChiffre extends Noeud{
|
||
|
|
||
|
public NoeudChiffre(String n){
|
||
|
this.val = n;
|
||
|
}
|
||
|
|
||
|
protected void afficherNoeud(){
|
||
|
System.out.print(val+" ");
|
||
|
}
|
||
|
|
||
|
}
|