Classe ‘Calendar’: Affichage Date et heure complete

Author:


{filelink=6014}


import java.util.Calendar;

public class CalendrierHD {
  public static void main(String[] argv) throws Exception {

    Calendar cal = Calendar.getInstance();
    System.out.printf("Date et Heure Complètes: %tc", cal);
  }
}

Leave a Reply

Your email address will not be published. Required fields are marked *