Stiven Palate

Generation

generate functionMon, 12 Jun 2023

Genere un método el cual acepte como argumento una matriz de cadenas y genere otra matriz del mismo orden en donde almacene en cada posición la cantidad de vocales que contiene cada palabra en la misma posición

public static String[][] filter(String[][] matrix){ int cantVocal = 0; String[][] vocal = new String[matrix.length][matrix[0].length]; for (int i = 0; i < matrix.length; i++) { for (int j = 0; j < matrix[i].length; j++) { for (int k = 0; k < matrix[i][j].length(); k++) { if (isVowel(matrix[i][j].charAt(k))){ cantVocal++; } } vocal[i][j] = String.valueOf(cantVocal); cantVocal = 0; } } return vocal; }

Questions about programming?Chat with your personal AI assistant