/**
 * A simple example of an array of arrays
 */
 public class Sports1
 {
    public static void main(String[] args)
    {
			int          game, points, week;
			int[]        temp;
			Object[]     pointsScored;


			pointsScored    = new Object[3];

			temp            = new int[2];
			temp[0]         = 58;
			temp[1]         = 60;
			pointsScored[0] = temp;

			temp            = new int[4];
			temp[0]         = 72;
			temp[1]         = 48;
			temp[2]         = 61;
			temp[3]         = 44;
			pointsScored[1] = temp;

			temp            = new int[3];
			temp[0]         = 60;
			temp[1]         = 63;
			temp[2]         = 51;
			pointsScored[2] = temp;


			for (week=0; week < pointsScored.length; week++)
			{
	    		System.out.println("\nWeek: "+week);
	
			    temp = (int[])pointsScored[week];

	  			  for (game=0; game < temp.length; game++)
	    		  {
						points = temp[game];
						System.out.print("  Game "+game+": "+points);
	    		  }
			}
    }

}
