我正在处理vowel counting problem at coedabbey,但我的解决方案似乎无法正常工作。这就是我正在做的事情:
import java.util.Scanner;
public class Solution {
private static Scanner input;
public static void main(final String[] args){
input = new Scanner(System.in);
int amount = input.nextInt();
for(int i = 0 ; i < amount ; i++){
int sum = 0;
String nowa = input.nextLine();
for(int j = 0; j < nowa.length() ; j++){
char x = nowa.charAt(j);
if(x == 'a' || x == 'o' || x == 'u' || x == 'i' || x == 'e' || x == 'y'){
++sum;
}
}
System.out.println(sum+ " ");
}
}
}
但它没有做正确的行数,并且在输入输入后总是为行的计数输出0
。之后,它比我预期的少了一行。
示例运行可能如下所示:
> java Solution
> 3
0
> hello
2
> george
3
但是,我想进入另一条线,因为我说&#34; 3&#34;在开始。
答案 0 :(得分:2)
答案 1 :(得分:0)
而不是String nowa = input.nextLine();
尝试String nowa = input.next();
。