格式
for(初始化语句;条件表达式;控制体语句){
//循环体---就是内层for循环
for(初始化语句2;条件表达式2;控制体语句2){
内层循环的循环体...
}
}
例
99乘法表
class ForForDemo3{
public static void main(String[] args){
//99乘法表:列数y小于等于行数 (x)
//保证数据:x,y都是1开始
for(int x = 1 ; x <=9 ; x++){//行数 x=1 ,1<=9
for(int y = 1 ; y <=x ; y ++){//列数 y=1,y<=1
//1 * 1 = 1
// \x:x代表任意字符
// "\t" :制表符号 ,相当于tab键的效果
System.out.print(x+"*"+y+"="+(y * x)+"\t") ;
}
System.out.println() ;//换行
}
}
}