Привет, что я должен добавить в этот код, чтобы он также показывал, сколько согласных, когда пользователь вводит строку.
import java.util.Scanner; public class NewClass { public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.print("Input the string: "); String str = in.nextLine(); System.out.print("Number of Vowels in the string: " + count_Vowels(str)+"\n"); } public static int count_Vowels(String str) { int count = 0; for (int i = 0; i < str.length(); i++) { if (str.charAt(i) == 'a' || str.charAt(i) == 'e' || str.charAt(i) == 'i' || str.charAt(i) == 'o' || str.charAt(i) == 'u') { count++; } } return count; } }
Что я уже пробовал:
я пробовал использовать "если еще", но он не работает. я очень ценю, если кто-нибудь может помочь.