my question is the following, I want to get the number of rows and columns of my matrix , to print its content on screen, but in the for no I want to place i < (number of elements that you put), I would like something like i < rows.length
int numeros[][] = new int [2][3];
numeros[0][0] = 100;
numeros[0][1] = 200;
numeros[0][2] = 300;
numeros[1][0] = 400;
numeros[1][1] = 500;
numeros[1][2] = 600;
for (int f = 0; f < 2 <=(**Aqui es donde me refiero**); f++) {
for (int c = 0; c < 3 <=(**Aqui es donde me refiero**); c++) {
System.out.print(numeros[f][c] + " ");
}
System.out.println();
}