Question: Write a program that has a method called cornersSame and a method called printArray (you can re-use the code from Problem 3 to print the

 Write a program that has a method called cornersSame and a

Write a program that has a method called cornersSame and a method called printArray (you can re-use the code from Problem 3 to print the array). The method cornersSame takes in a 2D array and checks to see if the four corners of the grid contain the same value. It returns a boolean value (true if they are all the same, or false). You will test your method in the main method of your program by using a Scanner: Read in two integers (R and C) that represents the rows and columns of a 2D array. Then read in (R*C) integers and copy the values into the 2D array. Print the 2D array calling printArray. Then print the result of the method cornersSame. Example: Sample Input (read 2 ints: row and col; then read in a sequence of integers to be stored in the 2D array) Sample Output 3312 3 4 5 6 7 8 9 Alt + A) 456 7 8 9 false 33 32 343 3373 323 433 373 true

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!