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