0
I’m trying to pass the data inside the matrix, but it’s not running the lines.
int i=0;
int j=0;
for(;i<3;i++){
for(;j<4;j++){
System.out.println("Valor para a posição ["+i+","+j+"]");
notasAlunos[i][j]=entrada.nextDouble();
}
}