The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 3 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
This is Java programming, due date is 11/27. Thank you
Â
COM S 207CountUpperCaseMThis problem is almost exactly like 301 CountUpperCase problem, except that hereyou need touse a methodto do the calculations.Declare a method named countVowelsConsonants as follows:private static void countVowelsConsonants(String s) {// write your code to count vowels, consonants etc here.}In the main method, do all the reading of the lines and doubles. Call this methodfrom the main method to count the vowels, consonants etc and to print them out.Write a program that reads in lines from the input.After each line is read in, it prints out thenumber of capital vowels, thenumber of capital consonants, andthenumber of other charactersin the line.InputThe input is just any line of charactersOutputThe output will be the number of CAPITAL vowels (aeiou), the number of CAPITAL consonants (i.e. not vowels),and the number of other characters in the line. These are separated by a single space between them.Sample InputaokEKOkM49!4kPAAAAOOPPPELL994920;[;];,<.>[dvSample Output2 3 97 5 160 0 2HINTLoop over the String a character at a time (using s.charAt(i) to get the character at index i).Check if the character is a CAPITAL vowel (i.e. 'A' or 'E' or 'I' or 'O' or 'U').ELSE check if is between 'A' and 'Z' -using >= and <= // that means it must be a capital consonantELSE it is something else.
Attachments:
-----------