Homework Help Question & Answers
C++ Cinema Project
Project Cinema Assume you’re asked to create a database for cinemas in egypt, which contains:
Structure Address{ String City, Integer StreetNo}
Structure movie_type{ String name, string description. integer allowed_age }
Structure Cinema { Long ID. String Name, integer phone_number , Address address, integer rating , integer hall_numbers, movie_type movie}
Draw a complete flowchart and Write a complete C++ program to do the following:
Takes an array of size 10 from Cinema.
Write a menu for user that contains:
o Press 1 to fill data of database.
o Press 2 to output data in the database
o Press 3 to search on Cinema by Name
o Press 4 to search on Cinema by ” 5 ” stars rating
o Press 5 to search on Cinema by names of viewing movies
o Press 6 to search on Cinema by 10
o Press 7 to search on Cinema in StreetNo “109”
o Press 8 to exit
Use Do (cdots) While to restart menu.