Consider:
int[][] multD = new int[5][]; multD[0] = new int[10];
Is this how you create a two-dimensional array with 5 rows and 10 columns?<
Try this way:
int a[][] = {{1,2}, {3,4}}; int b[] = {1, 2, 3, 4};