//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<n; row++)
		{
			for (int col=0; col<3; col++)
			{
				System.out.print (table [row] [col] + "\t");
			}
			System.out.println();
		}
	}
}

		