我正在练习在我的主要功能中测试我的方法(它是计算元音的数量)。我想知道如何在这里实现我的代码?我的代码也有缺陷吗?
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);
}
}