class etudiant {

   private String nom;
   private String prenom;
   private String adresse;
   private double moyenne;


   public etudiant(String nom, String prenom, String adresse, double moyenne){
   this.nom=nom;
   this.prenom=prenom;
   this.adresse=adresse;
   this.moyenne=moyenne;
   }

   public String getNom(){

   return this.nom;
   }


   public String getPrenom(){

   return this.prenom;
   }

   public String getAdresse(){

   return this.adresse;
   }

   public double getMoyenne(){

   return this.moyenne;
   }

   public void changerMoyenne(double moyenne){

   this.moyenne=moyenne;
   }

   public void AfficherInformations(){

   System.out.println("Nom : "+this.nom+"\nPrenom : "+this.prenom+"\nAdresse : "+this.adresse+"\nMoyenne : "+this.moyenne);
   }

   public static void main(String[] args){

   etudiant moi=new etudiant("Aubrun","Nathalie","5, boulevard Descartes",5);
   moi.AfficherInformations();
   moi.changerMoyenne(18);
   moi.AfficherInformations();
   }
}
