因为我真的很喜欢编程,而且我喜欢在空闲时间编程,所以我试图创建一个输出看起来像 x 的代码。像这样的东西。
x x
x x
x
x x
x x
所以我希望用户输入“x”的高度。这是我到目前为止的代码,我真的不知道如何继续。我只需要一个提示,或者是否有人可以告诉我我哪里出错了。
import java.util.Scanner;
public class x{
public static void main(String[] args){
Scanner kbd = new Scanner(System.in);
int height;
System.out.print("Enter the height of the X: " );
height = kbd.nextInt();
for (int i = 1; i <= height; i++){
for (int j = 1; j <= height; j++) {
if(i ==j || j+i == height + 1)
System.out.println("x");
else
System.out.print(" ");
}
}
}
}