New Boston のビデオの練習をいくつか試していますが、うまくいきません。私はJavaが初めてで、これが私の最初のクラスです。2 次元配列を作成する割り当てがあり、それを画面に表示する方法がわかりません。このプラクティスは、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();
}
} }