我应该在这段代码中添加什么来使它在用户输入字符串时也显示多少辅音

我应该在这段代码中添加什么来使它在用户输入字符串时也显示多少辅音

本文介绍了嗨,我应该在这段代码中添加什么来使它在用户输入字符串时也显示多少辅音。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

import java.util.Scanner;

public class NewClass {
    public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        System.out.print("Input the string: ");
        String str = in.nextLine();
        System.out.print("Number of Vowels in the string: "
        + count_Vowels(str)+"\n");
    }
    public static int count_Vowels(String str) 
    {
        int count = 0; for (int i = 0; i < str.length(); i++)
        {
            if (str.charAt(i) == 'a' || str.charAt(i) == 'e' ||
            str.charAt(i) == 'i' || str.charAt(i) == 'o' || str.charAt(i)
            == 'u')
            {
                count++;
            }
        }
        return count;
    }
}





我的尝试:



i尝试使用if else,但它不会运行。如果有人可以提供帮助,我真的很感激。



What I have tried:

i have tried using "if else" but it wont run. i really appreciate if somebody can help.

推荐答案



这篇关于嗨,我应该在这段代码中添加什么来使它在用户输入字符串时也显示多少辅音。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 09:23