Question: C++ follow prompt Write a program that will read a line of text and output a list of all the letters that occur in the
C++ follow prompt
Write a program that will read a line of text and output a list of all the letters that occur in the text together with the number of times each letter occurs in the line. End the line with a period that serves as a sentinel value. The letters should be listed in the following order: the most frequently occurring letter, the next most frequently occurring letter, and so forth. Use two arrays, one to hold integers and one to hold letters. You may assume that the input uses all lowercase letters. For example, the input
do be do bo.
Should produce output similar to the following:
| Letter | Number of Occurrences |
|---|---|
| o | 3 |
| d | 2 |
| b | 2 |
| e | 1 |
Your program will need to sort the arrays according to the values in the integer array. You can modify the function sort given in Display 7.12 and use it in your program. You cannot use sort to solve this problem without changing the function.
Prompt



7.12


#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
