您好我正在尝试根据用户输入自动填充二维数组。用户将输入 1 个数字,该数字将设置 2d 数组的大小。然后我想打印出数组的数字。例如,如果用户输入数字 4。二维数组将是 4 行 x 4 列,应该包含数字 1 到 16,并打印如下。
1-2-3-4
5-6-7-8
9-10-11-12
13-14-15-16
但我正在努力想出正确的声明来做到这一点。目前我的代码只是打印出一个包含 *.
有没有人知道如何打印出这些数字,我真的很困惑。我的代码如下:
public static void main(String args[]){
Scanner input = new Scanner(System.in);
System.out.println("Enter room length");
int num1 = input.nextInt();
int num2 = num1;
int length = num1 * num2;
System.out.println("room "+num1+"x"+num2+"="+length);
int[][] grid = new int[num1][num2];
for(int row=0;row<grid.length;row++){
for(int col=0;col<grid[row].length;col++){
System.out.print("*");
}
System.out.println();
}
}