/*This example creates a two-dimensional array with 9 rows and a variable number
of columns for each row. The first row is given 21 columns. The second row is
given 5000 columns.
*/
publicclass Test2Darray2 {
publicstaticvoid main(String args[]) {
int[][] multD = newint[9][];
multD[0] = newint[21];
multD[1] = newint[5000];
}
}