1 public static void main(String[] args) { 2 3 for(int i=1;i<=9;i++){ 4 5 for(int j=1;j<=i;j++){ 6 7 System.out.print(j +"*"+i+"="+ i*j +" "); 8 } 9 System.out.println(); 10 } 11 12 }
1 public static void main(String[] args) { 2 3 for(int i=1;i<=9;i++){ 4 5 for(int j=1;j<=i;j++){ 6 7 System.out.print(j +"*"+i+"="+ i*j +" "); 8 } 9 System.out.println(); 10 } 11 12 }