为了账号安全,请及时绑定邮箱和手机立即绑定

在java中打印元音数量最多的单词

在java中打印元音数量最多的单词

素胚勾勒不出你 2023-06-28 15:22:21
我想打印包含最大元音数的单词。但问题是包含最大数量的句子的最后一个单词没有打印。请帮我解决这个问题。我的代码如下。当我输入输入时'Happy New Year',输出是 'Yea'。但我想要输出是'Year'import java.util.Scanner;public class Abcd {    public static void main(String args[]) {        Scanner sc = new Scanner(System.in);        System.out.print("Enter The Word : ");        String sentence = sc.nextLine();        String word = "";        String wordMostVowel = "";        int temp = 0;        int vowelCount = 0;        char ch;        for (int i = 0; i < sentence.length(); i++) {            ch = sentence.charAt(i);            if (ch != ' ' && i != (sentence.length() - 1)) {                word += ch;                  ch = Character.toLowerCase(ch);                if (ch == 'a' || ch == 'e' || ch == 'i' || ch == 'o' || ch == 'u') {                    vowelCount++;                 }            } else {                 if (vowelCount > temp) {                    temp = vowelCount;                    wordMostVowel = word;                }                word = "";                vowelCount = 0;            }            }        System.out.println("The word with the most vowels (" + temp + ") is: " + " " + wordMostVowel);    }}
查看完整描述

1 回答

?
慕田峪9158850

TA贡献1794条经验 获得超7个赞

您可以在空格处剪切单词(正确),但也可以在最后一个字符处剪切,即使它不是空格(因此永远不会处理该字符)。这是不正确的。


这是一种可能性:


import java.util.Scanner;


public class Abcd {

    public static void main(String args[]) {

        Scanner sc = new Scanner(System.in);

        System.out.print("Enter the sentence : ");

        String sentence = sc.nextLine();

        String wordMostVowels = "";

        int maxVowelCount = 0;


        for (String word : sentence.split(" ")) {

            int vowelCount = 0;

            for (char c : word.toLowerCase().toCharArray()) {

                if (c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u') {

                    vowelCount++;

                }

            }


            if (vowelCount > maxVowelCount) {

                maxVowelCount = vowelCount;

                wordMostVowels = word;

            }

        }


        System.out.println("The word with the most vowels (" + maxVowelCount + ") is: " + wordMostVowels);

    }

}


查看完整回答
反对 回复 2023-06-28
  • 1 回答
  • 0 关注
  • 122 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信