Fill in the Blanks 5to BACO Unidad II 2016Online version Examen de unidad by Mario Josué Israel Diaz Batres 1 int main static parseInt while public void ( String [ ] args ) { / / Indicamos el tamaño String texto = JOptionPane . showInputDialog ( " Introduce un tamaño " ) ; num [ ] = new int [ Integer . ( texto ) ] ; int ultimoDigito ; do { texto = JOptionPane . showInputDialog ( " Introduce numero entre 0 y 9 " ) ; ultimoDigito = Integer . parseInt ( texto ) ; } ( ! ( ultimoDigito> = 0 && ultimoDigito< = 9 ) ) ; / / rellenamos el array rellenarNumAleatorioArray ( num , 1 , 300 ) ; / / Creamos un array que contenga los numeros terminados en el numero especificado int terminadosEn [ ] = numTerminadosEn ( num , ultimoDigito ) ; / / Mostramos el resultado , mira el metodo de mostrarArrays / / mostrarArrayTerminadosEn ( num ) ; mostrarArrayTerminadosEn ( terminadosEn ) ; }