Question: Hi I need help creating a program in JAVA. ( The Location class ) Design a class named Location for locating a matximal value and
Hi I need help creating a program in JAVA.
(The Location class) Design a class named Location for locating a matximal value and its locationin a two-dimensional array. The class contains public data field 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.
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 are some additional rules
The matrix must be the user's choice between 3X3 to 10X10
The numbers in the matrix must be randomly generated from 0 to 99
The display should show the matrix
The display should show the largest number found
The display should show the row and column address where the largest number was first found
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
