
public class TwoDArray {
	int[ ][ ] scores = { {13,24,37,41,15} , {16,07,82,94,10}, {18,42,63,45,55} };

	public void printScores()
	{
		for (int[] row:scores)
		{
			for (int value:row)
				System.out.print(value + "\t");
			System.out.println();

		}
	}

	public int findLowest()
	{
		return 0;
	}

	public double findAvg()
	{
		return 0;
	}

	public static void main (String[] args)
	{
		TwoDArray d=new TwoDArray();
		d.printScores();
		System.out.println("The lowest is " + d.findLowest());
		System.out.println("The avg is " + d.findAvg());
	}
}
