Question: Consider the following object class that stores information about a movie, including the title and the total revenue that the movie has taken in. Below
Consider the following object class that stores information about a movie, including the title and the total revenue that the movie has taken in. Below is a partial listing of the code for the Movie class public class Movie private string title: private double revenue ; public String getTitle() return title; } public double getRevenue () 1 return revenue ) // There may be constructors and other methods not shown for this class. Given the following main method that creates and fills an array of Movie objects called flicka public static void main(String[] args) Movie[] flicks; 1/ code to instantiate and All the flicks array with Movie objects is not shown. System.out.println(highestGrosser (flicks) + " was the highest gross"); Write the method highestGrosser which takes an array of Movie objects and returns the highest revenue of all the movies in the array. You will need to make use of the Movie class shown above. (Bonus: For 2 bonus points, use a for each (or enhanced for) loop.) 1 B 1 IC 15 E
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
