/**
 * A simple example of a 2-D array
 */
public class HumanResources2
{
    public static void main(String[] args)
    {
		int          column, employees, quarters, row;

				// Note the literal
		int[][]      sickDays = {
	                         {5, 0, 1, 0},
	                         {2, 1, 4, 3},
	                        };

		employees = sickDays.length;
		quarters  = sickDays[0].length;


		for (row=0; row < employees; row++)
		{
	    	for (column=0; column < quarters; column++)
	    	{
				System.out.print(sickDays[row][column]+"\t");
	   	}
	      System.out.println("");
	   }

    }
}
