Problem:
Question- Write a C++ console program that performs the following:
- The user is asked to enter first name, last name and age.
- The program prints the inputs for the user to review.
- The user is asked to enter either 'Y' to confirm or ‘N' to re-enter
- If confirmed, the program processes the inputs and displays one of the following massages based upon the provided age:
1) For all ages less than 13
Message: "You qualify for 15% discount"
2) For all ages X: 13 <= X <=18
Message: "You qualify for 10% discount"
3) For all others
Message: "You qualify for 5% discount".
Show the code, demonstrate it works properly and describe what it is doing.