(Occurrences of a specified character) Write a method that finds the number of occurrences of a specified character in a string using the following header: public static int count (String str, char a) For example, count("Welcome", 'e') returns 2. Write a test program that prompts the user to enter a string followed by a character then displays the number of occurrences of the character in the string. Output:

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter9: Records (struct)
Section: Chapter Questions
Problem 10SA
icon
Related questions
Question
100%
*6.23 (Occurrences of a specified character) Write a method that finds the number of
occurrences of a specified character in a string using the following header:
public static int count (String str, char a)
For example, count ("Welcome", 'e') returns 2. Write a test program that
prompts the user to enter a string followed by a character then displays the
number of occurrences of the character in the string.
Expected Output:
Run1:
Enter a string: Testing
Enter a character: T
The number of occurrences of T in Testing is 1
Run2:
Enter a string: hello world
Enter a character: o
The number of occurrences of o in hello world is 2
Transcribed Image Text:*6.23 (Occurrences of a specified character) Write a method that finds the number of occurrences of a specified character in a string using the following header: public static int count (String str, char a) For example, count ("Welcome", 'e') returns 2. Write a test program that prompts the user to enter a string followed by a character then displays the number of occurrences of the character in the string. Expected Output: Run1: Enter a string: Testing Enter a character: T The number of occurrences of T in Testing is 1 Run2: Enter a string: hello world Enter a character: o The number of occurrences of o in hello world is 2
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning