/** * Example of creating an array of objects * * Hunter Lloyd *March 8 */ public class Driver { public static void main(String [] args) { ConsoleReader console = new ConsoleReader(System.in); System.out.println("How many employees do you have?"); int count = console.readInt(); Employee emp[] = new Employee[count]; for(int i=0; i