public class Driver { /** * This is the driver for testing Date. */ public static void main(String[] args) { Date d = new Date (); d.setMonth (13); System.out.println (d); d.setMonth(12); System.out.println (d); } }