9*9 void anlie3() { for(int i =1;i<=9;i++){ for(int j=1;j<=i;j++){ System.out.printf(i+"×"+j+"="+i*j+"\t"); } System.out.printf("\n"); } }