//File:	IntTable.java
public class IntTable
{
	public static void display (int [] [] x, int rows, int cols)
	{
		for (int row=0; row<rows; row++)
		{
			for (int col=0; col<cols; col++)
			{
				System.out.print ("\t" + x [row] [col]);
			}
			System.out.println();
		}
	}
	
	public static void display (int [] [] x)
	{
		for (int row=0; row<x.length; row++)
		{
			for (int col=0; col<x[row].length; col++)
			{
				System.out.print ("\t" + x [row] [col]);
			}
			System.out.println();
		}
	}
}