Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Have the function StringChallenge( str ) take the str string parameter being passed and return the number of vowels the string contains ( ie. All

Have the function StringChallenge(str) take the str string parameter being passed and return the number of vowels the string contains (ie. "All cows eat grass and moo" would return 8). Do not count y as a vowel for this challenge.

Examples

Input: "hello" Output: 2

Input: "coderbyte" Output: 3

Just I start the solution using java

import java.util.*;

import java.io.*;

class Main {

public static String StringChallenge(String str) {

// code goes here

return str;

}

public static void main (String[] args) {

// keep this function call here

Scanner s = new Scanner(System.in);

System.out.print(StringChallenge(s.nextLine()));

}

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

3b. How many alkali family elements

Answered: 1 week ago

Question

13. You always should try to make a good first impression.

Answered: 1 week ago