how to accept the two dimensional array in java code example
Example 1: two dimensional array in java example program
class MultidimensionalArray {
public static void main(String[] args) {
int[][] a = {
{1, -2, 3},
{-4, -5, 6, 9},
{7},
};
for (int i = 0; i < a.length; ++i) {
for(int j = 0; j < a[i].length; ++j) {
System.out.println(a[i][j]);
}
}
}
}
Example 2: define more dimensional array of type double in java
int[][] multiples = new int[4][2];
and 2 columns
String[][] cities = new String[3][3];
and 3 columns