打印由星号制成的倒置三角形

class upsidedown {

    public static void main(String args[]) {

int x, y;

for (y = 1; y <= 5; y++) {

for (x = 0; x < 5 - y; x++) {

System.out.print(' ');

}

for (x = (2 - y); x < (2 - y) + (2 * y - 1); x++) {

System.out.print('*');

}

System.out.print('\n');

}

}

}

到目前为止,我的代码打印出一个规则的,右侧向上的三角形。我如何使其倒挂?

回答:

非常简单地。使用相同的逻辑,只需反转打印行的顺序即可。

public class UpsideDown {

public static void main(String args[]) {

int x, y;

for (y = 5; y >= 1; y--) { //reverse here

for (x = 0; x < 5 - y; x++)

System.out.print(' ');

for (x = (2 - y); x < (2 - y) + (2 * y - 1); x++)

System.out.print('*');

System.out.print('\n');

}

}

}

另外,请遵循Java命名约定。

以上是 打印由星号制成的倒置三角形 的全部内容, 来源链接: utcz.com/qa/403880.html

回到顶部