Answered step by step
Verified Expert Solution
Question
1 Approved Answer
java only asap 10. Consider a class Movie that contains information about a movie. The class has the following attributes: The movie name The MPAA
java only asap
10. Consider a class Movie that contains information about a movie. The class has the following attributes: The movie name The MPAA rating (e.g., G, PG, PG-13, R) The number of people who have rated this movie as a 1 (Terrible) The number of people who have rated this movie as a 2 (Bad) The number of people who have rated this movie as a 3 (OK) The number of people who have rated this movie as a 4 (Good) The number of people who have rated this movie as a 5 (Great) Implement the class with accessors and mutators for the movie name and MPAA rating. Write a method addRating that takes an integer as an input parameter. The method should verify that the parameter is a number etween 1 and 5, and if so, increment by one the number of people rating the movie that matches the input parameter. For example, if 3 is the input parameter, then the number of people who rated the movie as a 3 should Incremented by one. Write another method, getAverage, that returns dit the class by writing a main method that creates at least two movie A rating, and average rating for each movie object. the average value for all of the movie ratings. lects, adds at least five ratings for each movie, and outputs the movie Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started