package scolarite;



public class Etudiant {

	String nom;
    String prenom; 
    double[] notes;

    public Etudiant(String nom, String prenom)
    {
        this.nom = nom;
        this.prenom = prenom;
        this.notes = new double[0];
    }

}