Question: 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,
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 double type.Write the following method that returns the location of the largest element in atwo-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. Here is a sample run:
Enter the number of rows and columns in the array: Enter the array: -Enter 3 4 -Enter 23.5 35 2 10 JEnter 4.5 3 45 3.5 35 44 5.5 9.6 -Enter The location of the largest element is 45 at (1, 2)
Step by Step Solution
3.47 Rating (157 Votes )
There are 3 Steps involved in it
Output Enter the number of rows and column of the array 4 6 Enter Enter the array 235 ... View full answer
Get step-by-step solutions from verified subject matter experts
