Question: Write a program that that contains a method locateLargest that returns the location of the largest element in a two- dimensional array. public static int

Write a program that that contains a method locateLargest that returns the location of the largest element in a two- dimensional array. public static int [ locateLargest(double[ [ a) The return value is a one-dimensional array that contains two elements. These two elements indicate the row and column where largest element in the two-dimensional array occurs The program reads a two-dimensional array from a file and displays the location of the largest element in the array Use the input file as 2Ddata.txt Assume the following data in the file and assume only one maximum value in the file. 23.5 35 2 10 4.5 3 45 3.5 35 44 5.5 9.6 When you run the program with the above input file, here is the expected output. The largest value is 4!5 The largest element is located at [1,2]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
