You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
381 B
Java

Show dates before 1970
public class DatePrint1 {
public static void main(String[] argv) {
//+
Calendar c = new GregorianCalendar(1918, 10, 11);
System.out.println(c.get(Calendar.DAY_OF_MONTH) + " " +
c.get(Calendar.MONTH) + ", " +
c.get(Calendar.YEAR) + " " +
c.get(Calendar.ERA));
//-
}
}