Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

undefined Develop a class Movie that contains information about a movie. The class has the following private members: - The movie's title, string type -

image text in transcribedundefined

Develop a class Movie that contains information about a movie. The class has the following private members: - The movie's title, string type - The MPAA rating (for example, G, PG, PG-13, R), string type - A vector of size 6 that holds number of rating votes from audience, i.e., how many people rate the movie as bad (1), as not recommended (2), as average (3), as good (4), as great (5). Store number of votes of a certain rating in corresponding places in the vector. For example, if a movie has 100 5-star votes, then vector_name[5] should be 100. The class has following public members: No default constructor is allowed for this class. A parameterized constructor that will initiate move's title, MPAA rating and vector. A function addRating(rate, number_of_rate), which takes two integers as input parameters. The function should verify that the parameter rate is a number between 1 and 5, and if so, increment the vector_name[rate] by number_of_rate. A function getAverage() that returns the average rating about the movie. For example, if a movie has 10 1-star ratings and 20 5-star ratings, then the function should return 3.66. If the movie has not received any ratings yet, return 0. A print function that prints the movie's title, MPAA rating and average rating. Write several test cases in the main function to test your program

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Design Implementation And Management

Authors: Peter Rob, Carlos Coronel

3rd Edition

0760049041, 978-0760049044

Students also viewed these Databases questions

Question

LO1 Understand human resource management and define human capital.

Answered: 1 week ago