Question: The two - dimensional arrays m 1 and m 2 are identical if they have the same contents. Write a method that returns true if

The two-dimensional arrays m1 and m2 are identical if they have the same contents. Write a method that returns true if m1 and m2 are identical, using the following header:public static boolean equals(int[][] ml, int [][] m2)Write a test program that prompts the user to enter two 3*3 arrays of integers and displays whether the two arrays are identical. Here are the sample runs:Enter m1:51252261424546Enter m2:51222561244546The two arrays are identical.Enter m1:5152261424546Enter m2:51222561424546The two arrays are not identical.(In the both outputs I get The two arrays are not identical. how can I fix it so that if the values are the same no matter the location of it the output is identical?)
 The two-dimensional arrays m1 and m2 are identical if they have

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!