class lingwuyisan23
{
public static void main(String[] args)
{
int z =1; //定义每次输出的值z
for(int x=0;x<6;x++) //遍历0-6的值
{
for(int y=0;y<x+1;y++) //y的值小于x+1继续执行内循环语句,直到y的值不小于x+1就执行换行语句
{
System.out.print(z+"\t"); //输出z的值并空格
z++; //内循环执行一次z的值自增一次
}
System.out.println(); //换行
}
}
} |