hello, i need help in the following c++ programming question please
4 Cinema 4
This program is for a cinema. It computes the price of a movie ticket. It offers
different types of seats. Tickets for children that are accompanied by two adults,
are half of the normal child ticket.
ADULT CHILD
Shouf Shouf Habibi $8.00 $5.00
The Interview (3D) $10.00 $6.00
New Kids Turbo (3D) $10.00 $6.00
Black Butterflies $8.00 $5.00
From the assignment :
There are four type of seats. There is one price for adults and one price for children (they must be accompanied by at least two adults).
Then maybe we have an array of four structs that store the price database. Create a menu 1 - 4 and process the user input.
You should store user inputs so you process them later, do not handle input right away. There may exist some cases a child is not qualified for the low ticket price is not accompanied by two adults.