//循环语句的学习
public class Test1 {
public static void main(String[] args) {
// TODO 自动生成的方法存根
for(int x=0;x<9;x ){
for(int y=0;y<=x;y ){
System.out.print("*");
}
System.out.println();
}
System.out.println("***************九九乘法表************************");
for(int x=1 ;x<=9;x ){
for(int y=1;y<=x;y ){
System.out.print(y "*" x "=" y*x "\t"); //x控制行,y控制列。
}
System.out.println(); //'\t' tab键的位置
//'\r' 回车
} //'\n' 换行
}
}
,