Page 1 of 1

In c++ A new video store in your neighborhood is about to open. However, it does not have a program to keep track of its

Posted: Fri May 20, 2022 11:29 am
by answerhappygod
In c++
A new video store in your neighborhood is about to open. However, it does not have a program to keep track of its videos and customers. The store managers want someone to write a program for their system so that the video store can operate.
Create a MovieList Class with the following components:
Movie Code
Movie Title
Movie Genre
Year Released
The program requires the following menu and processes:
There will be 5 Movie Information in the Linked List. This will be done in the constructor.
1.Insert a New Movie (insert operation)
2.Rent a Movie (delete operation)
3.Return a Movie (append operation)
4.Show Movie Details (traversal operation with match Movie Code)
5.Print Movie List (traversal operation)
6.Quit the Program (destructor)
Use a linked list to create a list of videos
Problem Description A new video store in your neighborhood is about to open. However does not have a program to keep track of its videos and customer The store managers want someone to write a program for their system so that the video store can operate Create a MovieList Class with the following components: • Movie Code • Movie Title • Movie Genre • Year Released The program requires the following menu and processes There will be 5 Movie Information in the Linked List. This will be done in the constructor 1 Insert a New Movie linsert operation) 2 Rent a Movie (detete operation) 3. Return a Movie (append operation) 4. Show Movie Details (traversal operation with match Movie Code) 5. Print Movie List (traversat operation) 6. Quit the Program (destructor) Use a linked list to create a list of videos HR