gpt4 book ai didi

java - 用java制作一个倒三角形

转载 作者:行者123 更新时间:2023-12-01 15:05:07 25 4
gpt4 key购买 nike

我正在尝试将我制作的三角形倒过来。尝试了很多次,但我不知道该怎么做。

我所知道的代码是:

public static void drawPyramide(int lines, char symbol, boolean startDown) {
//TRIANGLE

if(startDown) {
//The triangle up side down should be here.
}

else {
int c = 1;
for (int i = 0; i < lines; i++) {
for (int j = i; j < lines; j++) {
System.out.print(" ");
}
for (int k = 1; k <= c; k++) {
if (k%2==0) System.out.print(" ");

else System.out.print(symbol);
}

System.out.print("\n");
c += 2;
}
}

}

有什么建议我可以“翻转”这个三角形吗?谢谢。

最佳答案

要翻转三角形,您实际上只需要更改迭代的方向。而不是从 i = 0i < lines你需要从 i = lines-1 下来至i >= 0

您还需要更改 c您想要以多少个空格和符号开始。

可能看起来像这样:

int c = 2*lines;
for (int i = lines-1; i>=0; i--)
{
for (int j = i; j < lines; j++)
{
System.out.print(" ");
}
for (int k = 1; k <= c; k++)
{
if (k % 2 == 0)
{
System.out.print(" ");
}
else
{
System.out.print(symbol);
}
}

System.out.print("\n");
c -= 2;
}

关于java - 用java制作一个倒三角形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13069304/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com