Question: this is for java Lab 8.2.3 Find Max Grid Value Select a code solution from the Guided Practice Files provided and modify it to load


this is for java
Lab 8.2.3 Find Max Grid Value Select a code solution from the Guided Practice Files provided and modify it to load data from a file and find and output the maximum value of the grid. Define and use a new method in the Traversals class called maxGrid, similar to minGrid, which receives the grid as a parameter, and searches for and returns the maximum value in the grid. Use the data file provided for input, 2DArrintB.dat. 2DArrintB.dat 76 12 8 64 -65 43 79 3 45 -9 23 55 16 5 9 -78 54 91 10 95 16 23 55 64 8 1 95 -77 68 33 -45 99 66 88 11 44 65 0 1 2 3 4 5 1 Data File - 2DArrInt.dat The grid should be output first, aligned as shown in columns of width four, right justified, followed by the output statement showing the maximum value of the grid. Run the program twice, once using the original data file, and then again after changing one of the values in the data file to something larger than the previous max value. For example, in the second output below, the original value of 95 was changed to 195, making it the max value for the second output. Output for Lab 8.2.3 Find Max Grid Value 12 8 64 -65 43 79 3 45 -9 23 55 16 5 9 -78 54 91 10 95 16 23 55 64 8 1 95 -77 68 33 -45 99 66 88 11 44 65 0 1 2 3 4 5 The maximum value is 99 First Outut vamle
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
