class Demo99 {
public static void main(String[] args) {
int[][] arr=new int[4][4];
arr[0][0]=1;
for(int x=1; x<4; x++) {
arr[x][0]=arr[x-1][0]+x;
for(int y=0; y<x; y++) {
arr[x][y+1]=arr[x][0]+y+1;
}
}
for(int x=0; x<4; x++) {
for(int y=0; y<=x; y++) {
System.out.print(arr[x][y]);
}
System.out.println();
}
}
}
有木有更优化的写法? |