import java.util.*; enum Dept { ITEC, BIOL, CHEM, PHYS } class Enrollments_v2 { final static int YEAR_START = 2010; final static int YEARS_OF_DATA = 10; static int[][] readTable( Scanner s ) { int[][] enrollments; enrollments = new int[YEARS_OF_DATA][]; s.nextLine(); // consume the first, "header" line for (int r=0; r