Question: Need help writing code for: Please type 1 for first class Please type 2 for economy If the person types 1, then program should assign
Need help writing code for:
Please type 1 for "first class"
Please type 2 for "economy"
If the person types 1, then program should assign a seat in the first class section (seats 1 - 5).If the person types 2, then program should assign a seat in the economy section (seats 6 - 10). Program should then print a boarding pass indicating the person's seat number and whether it's in the first class or economy section of the plane.
Use a one-dimensional array to represent the seating chart of the plane.Initialize all elements of the array to 0 to indicate that the seats are empty.As each seat is assigned, set the corresponding element of the array to 1 to indicate the seat is no longer available.
Program should never assign a seat that has already been assigned.When the first class section is full, program should ask the person if it's acceptable to be placed in the economy section (and vice versa).If yes, then make the appropriate seat assignment.If no, then print the message "Next flight leaves in 3 hours".
Using "#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
