Please see attached: Instructions Summary To make telephone numbers easier to remember, some companies use letters to show their telephone number. For example, using letters, the telephone...

1 answer below »
Please see attached:

Instructions


Summary


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


In some cases, to make a telephone number meaningful, companies might use more than seven letters. For example,225-5466can be displayed asCALL 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:



phoneDialpad.jpg


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



Enter Y/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: 435-5696 To process another telephone number, enter Y/y Enter any other letter to terminate the program. z



Instructions 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: The program should accept input and produce output similar to the example program execution below. Enter Y/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: 435-5696 To process another telephone number, enter Y/y Enter any other letter to terminate the program. z This is what the run check is looking for: Tasks 0.00 out of 10.00 Correct output for single entry 2 0 out of 2 checks passed. Review the results below for more details. Checks Test CaseIncomplete Test case 1 Input Y Programming z Output Results 776-4726 Show Details Test CaseIncomplete Test case 2 Input y Cool code g Output Results 266-5263 Show Details 0.00 out of 10.00 Correct output for multiple numbers 1 0 out of 1 checks passed. Review the results below for more details. Checks Test CaseIncomplete Multiple numbers test 1 Input Y First Number y SecondNumber p Output Results 347-7868 732-6636
Answered 1 days AfterOct 22, 2021

Answer To: Please see attached: Instructions Summary To make telephone numbers easier to remember, some...

Sathishkumar answered on Oct 23 2021
116 Votes
#include
using namespace std;
int main()
{
char letter;
char op;
            int count = 0;

                    
            cout<<"Enter Y/y to convert a telephone number from letters to digits. Enter any other letter to terminate the program."<            cin>>(op);
            if (op == 'y')
            {
                
                
                //cout<                cout<<"Enter a telephone number using words :"<                while (cin>>(letter) && count <7 )
                {
                    
                     if(count == 3) {cout << "-";}
                     
                  if...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here