Question: Please do all steps in the following question:Please use C + + ( note: please make sure your answer is a complete program, and all

Please do all steps in the following question:Please use C++
(note: please make sure your answer is a complete program, and all considerations therewithin are taken into account)
Write a program that asks for a user's name and age, finds the ticket price based on the age, and prints out the user's name, age, and ticket price. The program must define the following 3 functions and call them in the main function
Create a function called getName that takes in no arguments and returns the name of the user.
Create a function called getAge that takes in the argument age and uses pass-byreference to set the age of the user. Ensure that the user cannot put in an age that is negative or greater than 100.
Create a function called printTicket that takes in the user's name and age and does the following
If they are less than or equal to 13 years old set ticket_Price to 9.99.
If their age is greater than 13 and less than 65, set ticket_Price to 19.99.
If their age is greater than or equal to 65, set ticket_Price to 12.99.
Output to the console the user's name, age and ticket price.
Sample Output:
What is vour name?
Please do all steps in the following

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock 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!