2 dimensionales array java code example
Example 1: java two dimensional arrays
int[][] multiples = new int[4][2];
and 2 columns
String[][] cities = new String[3][3];
and 3 columns
Example 2: 2d array java
char[][] array = new int[rows][columns];
Example 3: 2d array java
int[][]arr= new int [filas][columnas];
arr.length=filas;
int[][] a = {
{1, 2, 3},
{4, 5, 6, 9},
{7},
};
System.out.println("Length of row 1: " + a[0].length);
System.out.println("Length of row 2: " + a[1].length);
System.out.println("Length of row 3: " + a[2].length);
}
Example 4: How to create a 2d array in java
int[][] arr = new int[m][n];