Question: 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!