Question: Please write code in C++. Thanks Lab #09 Flowchart Many websites ask for phone numbers. The problem is that there are many ways to represent

Lab #09 Flowchart Many websites ask for phone numbers. The problem is

that there are many ways to represent a phone number. Examples include

Please write code in C++. Thanks

Lab #09 Flowchart Many websites ask for phone numbers. The problem is that there are many ways to represent a phone number. Examples include 817-555-1234, 817 555 1234 (c), and (817) 555-1234 x23. Write a Raptor program which inputs a string containing a US phone number in any format and outputs it in the international standard format. The international standard for US phone numbers is - +1 817 555 1234 There should be a single space after the +1, and after the third and sixth digits of the US number. Your Raptor program should: 1. Input a string including the number 2. Copy only the digits from the input string into another string 3. Issue an error message if the input string does not contain at least 10 digits 4. If the input string contains more than 10 digits, include only the first 10 digits in the formatted number 5. Output the phone number in standard format Hints: 1. In Raptor, a string is just an array of characters. 2. Lesson #9 has an example of working with strings in Raptor. 3. When only digits are input, Raptor assumes it is an integer instead of a string. Your flowchart does not need to properly handle an input like 8175551234, but your C++ version does need to handle that. 4. I recommend passing the digits only string to a procedure which outputs it in the standard format. Sample Output (inputs in bold) Please enter a phone number: 817-555-1234 The properly formatted number is +1 817 555 1234 Please enter a phone number: (817)515 7259 x23 The properly formatted number is +1 817 515 7259 Please enter a phone number: 214-555-999 The phone number must have at least 10 digits Please enter a phone number: 800**4444xxx333 The properly formatted number is +1 800 444 4333

Step by Step Solution

3.45 Rating (145 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

include include using namespace std string formatPhoneNumberstring input Copy only digits from input ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!