MUST BE IN JAVA
Design a class named Location for locating a maximal value and its location in a two-dimensional array.The class contains public data fields row, column, and maxValue that store the maximal value and its indices in a two-dimensional array with row and column as int types and maxValue as a doubletype.Write the following method that returns the location of the largest element in a two-dimensional array:public static Location locateLargest(double[][] a)The return value is an instance of Location. Write a test program that prompts the user to enter a two-dimensional array and displays the location of the largest element in the array.
If there are more than one largest element, find the location with the smallest row index and then the smallest column index.
Sample RunEnter the number of rows and columns in the array: 3 4Enter the array:23.5 35 2 104.5 3 45 3.535 44 5.5 9.6The largest element is 45, located at (1, 2)Class Name: Exercise09_13
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here