1 /* 2 九九乘法表 3 4 注意:转义字符:'x' x表示任意。 5 tab键 6 回车 7 换行 8 9 */ 10 class ForForDemo{ 11 public static void main(String[] args){ 12 for(int x=1; x<=9; x++){ 13 for(int y=1; y<=x; y++){ 14 System.out.print(y+"*"+x+"="+y*x+" "); 15 } 16 System.out.println(); 17 } 18 } 19 }