package scolarite;

import java.util.Arrays;

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];
    }
    
    
    

    
    
    
    
    
    @Override
    public String toString() {
    	String res = this.nom.toUpperCase() + " ";
    	res += String.valueOf(this.prenom.charAt(0)).toUpperCase();
    	return "Etudiant [nom=" + nom + ", prenom=" + prenom + ", notes=" + Arrays.toString(notes) + "]";
    }
    
    

}