//File: TestTable.java import iostuff.*; public class TestTable { public static void main (String [] args) { int [] [] table = new int [8][5]; String file = "table.txt"; int n=IntFiles.readInTable (file, table); System.out.println ("The number of rows in the table is: " + n); for (int row=0; row