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 void main(String[] args) { String[] a = {"hola", "me", "llamo", "nacho"; String[] b = new String[4]; for (int i = 0; i < a.length; i++) { int c = 0; for (int j = 0; j < a[i].length(); j++) { if (a[i].charAt(j) == 'a' || a[i].charAt(j) == 'e' || a[i].charAt(j) == 'i'|| a[i].charAt(j) == 'o' || a[i].charAt(j) == 'u') { c++; } } b[i] = String.valueOf(c); } }

Questions about programming?Chat with your personal AI assistant