/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

public class LeTempsPasse {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args)
    {
        
        long start=0;
        long end=0;
        long elapsed_milliseconds=0;
        
        start=System.currentTimeMillis();
        System.out.println("Exemple d'utilisation de la methode currentTimeMillis");
	end=System.currentTimeMillis();
        elapsed_milliseconds=end-start;
        System.out.println("Pendant ce temps, le temps passe : "
                           + elapsed_milliseconds);
    }   
}



