gpt4 book ai didi

java - 简单的 System.out 打印

转载 作者:行者123 更新时间:2023-12-02 03:43:28 24 4
gpt4 key购买 nike

好吧,我遇到了这个问题,我该如何编码但之间没有空行

x

xy

xxy

xxyy

xxxyy

xxxyyy

这是我到目前为止的代码

public static void main(String[] args) {

System.out.print("x");
for(int i = 0;i<6;i++){

for(int j = 0;j<i;j++){
System.out.print("x");
}
System.out.println();
}

}

最佳答案

模式如下:

1x,0y

1x,1y

2 倍,1 年

2x、2y...

所以你的循环应该是这样的:

int xCount = 0;
int yCount = 0;
int total = 3;
do {
if (xCount == yCount) xCount++;
else yCount++;
for (int x = 0; x < xCount; x++) System.out.print("x");
for (int y = 0; y < yCount; y++) System.out.print("y");
System.out.println();
} while (yCount < total);

关于java - 简单的 System.out 打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36579054/

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