class GBProgram { public static void main(String args[]) throws Exception { Student[] students = { new Student("Alice"), new Student("Bob" ), new Student("Carol"), new Student("David"), new Student("Eunice") }; Course aiti = new Course(students); double[][] studentScores = { {25.5, 39, 99}, {29, 60, 10, 100}, {100.0}, {40, 22.3, 44.1, 10.2, 33.2, 19.5}, {33.0, 67.9, 22} }; for (int i=0; i< students.length; i++) for (int j=0; j