Create a struct called Booking that consists of a 3 digit flight number (e.g. 234), type of seat (E or B), the priceof a seat in economic class and the number of seats booked.Declare an array to store at least 30 Booking structs. The user must be able to enter the information for a number of bookings from the keyboard. Ask whether abooking must be made (Y or N). If a booking must be made, a random 3 digit flight number must be generated.The user must be asked to enter the type of seat, the price per seat and the number of seats to book. Example of input: Make a booking (Y or N): Y Type of seat (E or B): e Price per seat : 1200 Number of seats: 2 Make another booking (Y or N): y Type of seat (E or B): b Price per seat : 3400 Number of seats: 2 Make another booking (Y or N): y Type of seat (E or B): e Price per seat : 1400 Number of seats: 3 Make another booking (Y or N): y Type of seat (E or B): e Price per seat : 1300 Number of seats: 2 Make another booking (Y or N): y Type of seat (E or B): b Price per seat : 4500 Number of seats: 2 Make another booking (Y or N): n
Create a struct called Booking that consists of a 3 digit flight number (e.g. 234), type of seat (E or B), the price
of a seat in economic class and the number of seats booked.
Declare an array to store at least 30 Booking structs.
The user must be able to enter the information for a number of bookings from the keyboard. Ask whether a
booking must be made (Y or N). If a booking must be made, a random 3 digit flight number must be generated.
The user must be asked to enter the type of seat, the price per seat and the number of seats to book.
Example of input:
Make a booking (Y or N): Y
Type of seat (E or B): e
Price per seat : 1200
Number of seats: 2
Make another booking (Y or N): y
Type of seat (E or B): b
Price per seat : 3400
Number of seats: 2
Make another booking (Y or N): y
Type of seat (E or B): e
Price per seat : 1400
Number of seats: 3
Make another booking (Y or N): y
Type of seat (E or B): e
Price per seat : 1300
Number of seats: 2
Make another booking (Y or N): y
Type of seat (E or B): b
Price per seat : 4500
Number of seats: 2
Make another booking (Y or N): n
Step by step
Solved in 3 steps with 2 images