九九乘法表

for(int i = 1;i<10;i++){//控制行
        for(int j = 1;j<10;j++){//控制列
            if(i>=j){
                System.out.print(j+"*"+i+"="+i*j+"  ");
            }else{
                System.out.println();//换行
                break;//当j大于i时,退出当前循环,继续下次循环
            }
        }
    }

九九乘法表_System