Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C++ program to accept English phrases and count the number of specific characters in the phrases. The program should be able to go

Write a C++ program to accept English phrases and count the number of specific characters in the phrases.

The program should be able to go through many input and output cycles until user hits Enter key for an empty phrase input, then the program will stop.

This function prototype must be defined:

int countLetterInString(String phrase, char c);

The main() function will call this function to get the count of character.

Input character c can be a space. The phase string can contain any character.

Sample console output:

image text in transcribed

Hints:

The main() function should have a loop to read and process multiple phrases

Function countLetterInString() should have a loop to process each character in the phrase

Use the string at(x) function to get each character in a string

The getline() function can read whole line with spaces.

My code solution has 36 lines of code with many comments

his program counts number of specific characters in phrase. Enter a phrase or hit Enter key to stop: ++ is great language Enter character to count in phrase: a here are 3 a in the phrase Enter a phrase or hit Enter key to stop: It rains a lot today Enter character to count in phrase: t here are 3 t in the phrase Enter a phrase or hit Enter key to stop: De Anza College Enter character to count in phrase: e here are 3 e in the phrase Enter a phrase or hit Enter key to stop: Hello there Enter character to count in phrase: a here are 0 a in the phrase Enter a phrase or hit Enter key to stop: How are you? Enter character to count in phrase: ? here are 1? in the phrase Enter a phrase or hit Enter key to stop: Process returned 0 (0xO) execution time 118.411 s

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_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

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

Get Started

Recommended Textbook for

Machine Learning And Knowledge Discovery In Databases European Conference Ecml Pkdd 2018 Dublin Ireland September 10 14 2018 Proceedings Part 1 Lnai 11051

Authors: Michele Berlingerio ,Francesco Bonchi ,Thomas Gartner ,Neil Hurley ,Georgiana Ifrim

1st Edition

3030109240, 978-3030109240

More Books

Students also viewed these Databases questions