posted 14 years ago
public class NewClass8 {
public static void main (String[]args){
System.out.println (" "+"\t\t"+"sun"+"\t"+"mon"+"\t"+"tue"+"\t"+"wed"+"\t"+"thu"+"\t"+"fri"+"\t"+"sat");
int [][]array = {
{2,4,3,4,5,8,8},
{7,3,4,3,3,4,4},
{3,3,4,3,3,2,2},
{9,3,4,7,3,4,1},
{3,5,4,3,6,3,8},
{3,4,4,6,3,4,4},
{3,7,4,8,3,8,4},
{6,3,5,9,2,7,9}};
for(int i=0; i<array.length; i++){
System.out.print("Employee"+i);
for(int j=0; j><array.length; j++){
System.out.print(array[i][j]);
}
}
System.out.println();
}
}>