メイン関数で自分の方法 (母音の数を数えること) をテストする練習をしています。ここで自分のコードをどのように実装できるのか疑問に思っていましたか? 私のコードにも欠陥がありますか?
public class MethodPractice{
public static void main(String[] args){
numVowels(howcanitesthere); //i know this is wrong, just trying smth..
}
public static int numVowels(String s){
String text = ("");
int count = 0;
for(int i = 0; i < text.length() ;i ++){
char c = text.charAt(i);
if(c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u'){
count++;
}
}
System.out.println(count);
}
}