//九九乘法表 //行 for (int m =1; m<10 ;m++) { //列 for (int n=1; n<=m;n++) { System.out.print(m + "x" + n + "=" + "\t"); } System.out.println(); }