如何让这个程序计算用户输入的单词中的元音?

时间:2017-11-07 01:11:04

标签: java string for-loop count

我在输入的单词中显示元音时遇到了一些问题。我有元音= AEIOU。我想也许这就是问题所在,但我不确定,我也不知道如何修复它。

这是它给我的东西:

输入一个单词:ANTARTICA

以下是ANTARTICA中的元音:AEIOU

元音数:4

流程已完成。

正如你所看到的,它计算了元音,我只想让它们显示出来。我该怎么办? (我是一个noob编码器......)

import static java.lang.System.*;
import java.util.*;

public class Java2106{
    public static void main(String[] args)  {
        new Solution();
}}


class Solution
{
    String word;
    int count;
    String vowels;

    Solution()
    {
        input();
        output();
    }

    public void input()
    {
        Scanner scan = new Scanner(in);

        out.print("Enter a word: ");
        word = scan.nextLine();


    }

    public void output()
    {
        vowels = "AEIOU";
        count = 0;

        out.println();
        out.print("Here are the vowels in " + word + ": " + vowels);


        for (int x = 0; x < word.length(); x++)
        {
            String let = word.substring(x,x+1);

            if (vowels.contains(let))
                count++;
        }

        out.println("\nVowel count: " + count);

    }
}

2 个答案:

答案 0 :(得分:1)

当你比较你必须小写的字母或忽略两个字母的情况。我添加了一个方法java8(),它向您展示了如何使用Java 8 lambda函数解决这个问题。

我强烈建议您阅读基本的Java以获得自己的好处,并学习如何编写Java类,因为下面的类不是一个很好的实现。对于像这样的简单程序,你的逻辑太复杂了,所以我强烈建议你回到基础。

import static java.lang.System.in;
import static java.lang.System.out;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

public class Java2106 {
    public static void main(String[] args) {
        new Solution();
    }
}

class Solution {
    String word;
    int count;
    String vowels;

    Solution() {
        input();
        output();
        java8();
    }

    private void java8() {
        Scanner scan = new Scanner(in);
        out.print("Enter a word: ");
        word = scan.nextLine();
        List<Character> letters = convert(word.toLowerCase());
        letters.removeIf(c -> (c.charValue() != 'a' && c.charValue() != 'e' && c.charValue() != 'i' && c.charValue() != 'o' && c.charValue() != 'u'));
        System.out.println("Vowels in given word: " + letters.size());
        scan.close();
    }

    private List<Character> convert(String word) {
        List<Character> letters = new ArrayList<Character>();
        for (Character c : word.toCharArray()) {
            letters.add(c);
        }
        return letters;
    }

    public void input() {
        Scanner scan = new Scanner(in);
        out.print("Enter a word: ");
        word = scan.nextLine();
    }

    public void output() {
        vowels = "AEIOU";
        count = 0;
        out.println();
        out.print("Here are the vowels in " + word + ": " + vowels);
        for (int x = 0; x < word.length(); x++) {
            String let = word.substring(x, x + 1);
            if (vowels.toLowerCase().contains(let.toLowerCase()))
                count++;
        }

        out.println("\nVowel count: " + count);

    }
}

其中一个简单的实现:

import java.util.Scanner;

public class Java2106 {
    public static void main(String[] args) {
        int count = 0;
        Scanner scan = new Scanner(System.in);
        System.out.print("Enter a word: ");
        String word = scan.nextLine();
        for (char c : word.toLowerCase().toCharArray()) {
            if (isVowel(c)) {
                count++;
            }
        }
        System.out.println("Total Vowels : " + count);
        scan.close();
    }

    private static boolean isVowel(char c) {
        return (c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u');
    }
}

答案 1 :(得分:0)

有很多方法可以做到这一点。

你可以有一个像这样的元音数组:

char[] vowels = {'a','e','i','o','u'};

然后执行一个简单的for循环,遍历字符串的每个字母:

int count = 0;
String vowelsInWord = "";    

for(int i=0; i<word.length; i++){
    for(int j=0; j<vowels.length; j++){
        if(word.charAt(i).toLowerCase() == vowels[j]){
            vowelsInWord += word.charAt(i).toLowerCase(); 
            count++;
        }
    }    
}

System.out.println("Vowels in word: " + vowelsInWord);
System.out.println("Vowel Count: " + count);