//CS5-HMC-Sp,00-HW$-3 //A. Khakpour, May, 00 class MultTable { //----------------------------------------------------------------- // Prints a multiplication table (10X10 only). //----------------------------------------------------------------- public static void main (String[] args) { final int MAX = 10; for (int row = 1; row <= MAX; row++) { for (int column = 1; column <= MAX; column++) System.out.print (row*column + "\t"); System.out.println(); } } }