static void Main(string[] args)
        {
            Simulateur simulateur = new Simulateur(1000);
            Statisticien statsiticien = new Statisticien(simulateur);
            statsiticien.lancerSimulateur();
            statsiticien.Affichagerapport();

            Console.ReadLine();
        }
 public Statisticien(Simulateur simul)
 {
     this.simul = simul;
     nombreJourEnsoleillee=0;
     nombreDeChangement=0;
 }