ユーザーが文字列を入力した場合: hello there
出力する必要があります
Hello has 2 vowels
There has 3 consonants.
これがかなり単純なコードであることはわかっていますが、アイデアが多すぎて混乱しています。numberofVowels と capitalizeWord の 2 つのメソッドがあり、両方が結果を返すことを確認する必要があります。
エラーが発生しましたが、母音を数えた後も大文字にする方法を見つけようとしています
import java.util.Scanner;
public class Hwk9
{
public static void main (String args[])
{
Scanner stdin = new Scanner(System.in);
String string1;
System.out.println("Enter a string");
string1 = stdin.nextLine();
string1 = string1.toLowerCase();
}
public static int numberVowels(String string1)
{
int count = 0;
int vowels = 0;
int consonants = 0;
for (int i = 0; i < string1.length(); i++)
{
char ch = string1.charAt(i);
if (ch == 'a' || ch == 'e' || ch == 'i' ||
ch == 'o' || ch == 'u')
{
vowels++;
}
else
{
consonants++;
}
}
}
}