two dimensional array and single java code example
Example 1: java two dimensional arrays
int[][] multiples = new int[4][2]; // 2D integer array with 4 rows
and 2 columns
String[][] cities = new String[3][3]; // 2D String array with 3 rows
and 3 columns
Example 2: two dimensional array in java example program
class MultidimensionalArray {
public static void main(String[] args) {
// create a 2d array
int[][] a = {
{1, -2, 3},
{-4, -5, 6, 9},
{7},
};
// first for...each loop access the individual array
// inside the 2d array
for (int[] innerArray: a) {
// second for...each loop access each element inside the row
for(int data: innerArray) {
System.out.println(data);
}
}
}
}