Stiven Palate

Generation

generate functionMon, 12 Jun 2023

Genere un método el cual acepte como argumento una matriz de números y genere otra matriz del mismo orden en donde multiplique por 5 a aquellas posiciones en donde los índices i sea múltiplo de 3 y el índice j sea múltiplo de 2

static int[][] mutiplyBy5(int[][] array){ int[][] newArray = new int[array.length][array[0].length]; for(int i = 0; i < array.length; i++){ for(int j = 0; j < array[i].length; j++){ newArray[i][j] = array[i][j] * 5; } } return newArray; }

Questions about programming?Chat with your personal AI assistant