我正在尝试一些新波士顿的练习视频,但无法正常工作!我对java很陌生,这是我的第一堂课。我有一个任务要做一个二维数组,但我不知道如何让它显示在屏幕上。这种做法来自 Thenewboston 的 Java 教程,视频 #34,它对他有用!
public class inventory {
public static void main (String[] args) {
int firstarray[][]= {{8,9,10,11},{12,13,14,15}};
int secondarray[][]={{30,31,32,33},{43},{4,5,6}};
System.out.println("This is the first array");
display(firstarray);
System.out.println("This is the second array");
display(secondarray);
}
public static void display (int x[][])
{
for(int row=0;row<x.length;row++)
{
for(int column=0;column<x.length;column++);
System.out.print(x[row][column]+"\t");
}
{
System.out.println();
}
} }