-1
How do I get the user to add values to an array [][][]?
calendarioEventos = new Evento[dia][mes][hora];
for(int i = 0; i < calendarioEventos.length; i++) {
for(int j = 0; j < calendarioEventos[i].length; j++) {
for(int k = 0; k < calendarioEventos[i][j].length; k++) {
this.calendarioEventos[i][j][k] = new Evento();
I have this matrix of an event calendar where the user has to add an event to a time of day. How do I do this?
Pass the positions and be happy, now, select your code to get a closer response to your reality?
– novic
Hello, could you mark the answer as correct? Thank you!
– anderson seibert