1 /** 2 *这是一个打印乘法9*9的例子 3 * @author 25689 4 * 5 */ 6 public class Chenfa { 7 public static void main(String[] arg) { 8 for(int i=1;i<10;i++) { 9 for(int j=1;j<=i;j++) { 10 System.out.print(j + "*" + i + "=" + i*j + " "); 11 } 12 System.out.println(); 13 } 14 } 15 }