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