代码中的元音数量

时间:2015-06-08 18:16:53

标签: java java.util.scanner

我正在处理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;在开始。

2 个答案:

答案 0 :(得分:2)

nextInt()之后略过一行,因为它不消耗整行,只消耗令牌

 int amount = input.nextInt();
 input.nextLine();

Demo

答案 1 :(得分:0)

而不是String nowa = input.nextLine();尝试String nowa = input.next();