Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Regular C programming It is suppose to be mapped with the letters corresponding to the numbers on the phone pad image. for example Get Loan

Regular C programming

image text in transcribed

image text in transcribed

It is suppose to be mapped with the letters corresponding to the numbers on the phone pad image. for example "Get Loan" the G is suppose to generate "4" because the phone pad image has the number 4 and the letters "GHI" linked to it. So basically the letters G, H, or I will always generate number 4

DESCRIPTION To make telephone numbers easier to remember, some companies use letters to show their telephone number, but mapping the letters to the numbers on a standard telephone keypad: 1 2 ABC 3 DE 4G 5 11 6 MNO 7 PONS 8 Tu 9.xyz # For example, using letters & spaces, 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. Write a program that prompts the user to enter a telephone number expressed in letters/spaces 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 telephone numbers until the user enters EXIT for a telephone number. For Example: Enter a telephone number using letterss (EXIT to quit): GET LOAN The corresponding telephone number is: 438-5626 Enter a telephone number using letterss (EXIT to quit): Call Home The corresponding telephone number is: 225-5466

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

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

Get Started

Students also viewed these Databases questions