Crear actividad
Jugar Completar frases
* * * DECLARANDO VARIABLES
int filas = 3 , columnas = 2 ;
Scanner ____________________ = ____________________ ____________________ ( System . in )
* * * ____________________ DE MATRIZ

int [ ] [ ] matrizz = new int [ filas ] [ columnas ]
System . out . println ( " Ingreso de notas " )
____________________ ( int ciclo = 0 ; i ____________________ ( int ciclo2 = 0 ; j< columnas ; ciclo2 + + ) {
____________________ . out . println ( " Matriz [ " + ciclo + " ] [ " + ciclo2 + " ] = " )
____________________ [ ciclo ] [ ciclo2 ] = lectura . nextInt ( )

}
}
____________________ . out . println ( " Mostrando matriz " ) ;
____________________ ( int cic = 0 ; h< matrizz . length ; cic + + ) {
____________________ ( int cic2 = 0 ; k< matrizz [ k ] . length ; cic2 + + ) {
____________________ . out . println ( matrizz [ cic ] [ cic2 ] + " " )
}
____________________ . out . println ( )
}
* * * FI N