當前位置:成語大全網 - 書法字典 - Java用嵌套循環編譯數字金字塔。

Java用嵌套循環編譯數字金字塔。

公共A類{

公共靜態void main(String[] args) {

int num = 6;

for(int I = 1;我& lt= numi++) {

for(int j = 1;j & lt= I;j++) {

system . out . print(j+““);

}

system . out . println();

}

}

}

1

1 2

1 2 3

1 2 3 4

1 2 3 4 5

1 2 3 4 5 6

put for(int j = 1;j & lt= I;j++){變成for(int j = 1;j & lt= num-I;j++) {

1 2 3 4 5

1 2 3 4

1 2 3

1 2

1