如何在输出弗洛伊德三角形的最后 2 行中向左移动?这是我的输出:
1
21
421
8421
168421
32168421
预期输出:
1
21
421
8421
168421
32168421
这是我的代码:
for(int i=0; i<=5; ++i) {
//total of space
int n=6-i;
//print space
while(n>0) {
System.out.print(" ");
n--;
}
//print number
for(int j=i; j>=0; j--) {
System.out.print((int)Math.pow(2, j));
}
System.out.println(" ");
}
谢谢
繁星淼淼
哆啦的时光机
相关分类