//File: TestTable.java import CSLib.*; public class TestTable { public static void main (String [] args) { int [] [] score = new int [30] [15]; int [] size = NumberList.readTable("gradebook.txt", score); int students = size[0]; int quizzes = size[1]; OutputBox out = new OutputBox(); out.setSize(300, 200); //The following sets up the headers for the table out.println ("The gradebook is as follows: "); out.print ("Quiz\t"); for (int k=1; k<=quizzes; k++) { out.print (k + "\t"); } out.println(); out.println(); for (int s=0; s