/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package summer2014; /** * * @author jcmt */ public class Summer2014 { /** * @param args the command line arguments */ public static void main(String[] args) { Concert symphony = new Concert(); Concert band = new Concert(5,7,2014, "Beethoven", 5000); System.out.printf("Whoo-hoo Concert dates are %d and %d\n", band.getDay(), symphony.getDay()); } }