Home / Expert Answers / Computer Science / c-summary-nbsp-to-make-telephone-numbers-easier-to-remember-some-companies-use-letters-to-sh-pa659

(Solved): C++ Summary   To make telephone numbers easier to remember, some companies use letters to sh ...



C++

Summary

 

To make telephone numbers easier to remember, some companies use letters to show their telephone number. For example, using letters, the telephone number 438-5626 can be shown as GET LOAN.

In some cases, to make a telephone number meaningful, companies might use more than seven letters. For example, 225-5466 can be displayed as CALL HOME, which uses eight letters.

Instructions

Write a program that prompts the user to enter a telephone number expressed in letters and outputs the corresponding telephone number in digits.

If the user enters more than seven letters, then process only the first seven letters.

Also output the - (hyphen) after the third digit.

Allow the user to use both uppercase and lowercase letters as well as spaces between words.

Moreover, your program should process as many telephone numbers as the user wants.

Use the dialpad below for reference:

\( \begin{array}{ccc}1 & 2 & 3 \\ \ldots & \text { ABC } & \text { DEE } \\ 4 & 5 & 6 \\ \text { GHI } & \text { JKL } & \tex

The program should accept input and produce output similar to the example program execution below.

Enter \( \mathrm{Y} / \mathrm{y} \) to convert a telephone number from letters to digits.
Enter any other letter to terminate

 

 

 

\( \begin{array}{ccc}1 & 2 & 3 \\ \ldots & \text { ABC } & \text { DEE } \\ 4 & 5 & 6 \\ \text { GHI } & \text { JKL } & \text { MNO } \\ 7 & 8 & 9 \\ \text { PQRS } & \text { TUV } & \text { WXYZ }\end{array} \) Enter \( \mathrm{Y} / \mathrm{y} \) to convert a telephone number from letters to digits. Enter any other letter to terminate the program. Y Enter a telephone number using letters: Hello world The corresponding telephone number is: \[ \text { 435-5696 } \] To process another telephone number, enter \( Y / y \) Enter any other letter to terminate the program. \( z \)


We have an Answer from Expert

View Expert Answer

Expert Answer


Below is program that prompts the user to enter a telephone number expressed in letters and outputs the corresponding telephone number in digits. C++
We have an Answer from Expert

Buy This Answer $5

Place Order

We Provide Services Across The Globe