El siguiente código Java declara un array bidimensional de enteros:
int[][] matriz = new int[3][4];
int[][] matriz = {{1, 2, 3}, {4, 5, 6}};
int[3][4] matriz = new int();
int matriz[3][4] = new int();

Lenguaje de Programación Los ejercicios se están cargando. ...