, new Date() )

Author:


{filelink=6027}

import java.util.Date;
import java.util.Locale;

public class PrintfDateExamples {
  public static void main(String[] args) {

    System.out.printf("La date du jour %s", new Date() );

    System.out.printf("La date du jour %tc", new Date() );

    System.out.printf("La date du jour %Tc", new Date() );

  }

}

Leave a Reply

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