我无法生成正确的输出。我已经制作了身体的顶部,但无法得到底部。它几乎是它的翻转版本。这是我想要得到的输出:
|../\..../\..|
|./\/\../\/\.|
|/\/\/\/\/\/\|
|\/\/\/\/\/\/|
|.\/\/..\/\/.|
|..\/....\/..|
代码:
public static void Body() {
for (int f = 1; f <= 3; f++) {
System.out.print("|");
for (int g = 1; g <= 3 - f; g++) {
System.out.print(".");
}
for (int h = 1; h <= f; h++) {
System.out.print("/\\");
}
for (int i = 1; i <= 3-f; i++) {
System.out.print("..");
}
for (int j = 1; j <= f; j++) {
System.out.print("/\\");
}
for (int h = 1; h <= 3 - f; h++) {
System.out.print(".");
}
System.out.print("|");
System.out.println();
}
}
public static void Body2() {
for (int i = 1; i <= 3; i++) {
System.out.print("|");
for (int j = 1; j <= 3 - i; j++) {
System.out.print(".");
}
for (int k = 1; k <= i; k++) {
System.out.print("\\/");
}
for (int l = 1; l <= 3-i; l++) {
System.out.print("..");
}
for (int m = 1; m <= i; m++) {
System.out.print("\\/");
}
for (int n = 1; n <= 3 - i; n++) {
System.out.print(".");
}
System.out.print("|");
System.out.println();
}
}