我想在三列和三行中显示值。这是我的代码:
public class MultiplicationTable {
public static void main(String[] args) {
for(int i=2;i<=10;i++){
System.out.println();
System.out.println(" The table " + i);
for(int j=2;j<=10;j++) {
System.out.println(" " +i + " x " + j + " = " + i*j + "\t");
}
}
}
}