好吧,伙计们,我有这个问题,我该如何编码但之间没有空线
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
2x,1y
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);