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[][] getVowelsAmount(String[][] strings){ int n = strings.length; int m = strings[0].length; String[][] res = new String[n][m]; for(int i=0; i<n; i++){ for(int j=0; j<m; j++){ res[i][j] = countVowels(strings[i][j]); } } return res; } public static String countVowels(String s){ int n = s.length(); int count = 0; for (int i = 0; i < n; i++) { char x = s.charAt(i); if (x == 'a' || x == 'e' || x == 'i' || x == 'o' || x == 'u') count++; } return Integer.toString(count); }

Questions about programming?Chat with your personal AI assistant