Question: Question 5 The two - dimensional arrays m 1 and m 2 are identical if they have the same contents. Write a method that returns
Question
The twodimensional arrays and are identical if they have the same contents. Write a method that returns true if and are identical, using the following header:
Write a test program that prompts the user to enter two arrays of integers and displays whether the two arrays are identical. Here are the sample runs:
Enter m:
The two arrays are identical.
Enter :
Enter m:
The two arrays are not identical. The dr said Just to clarify question in the assignment D array question
You need to pick one element from the first array m and compare it to every element in the nd array, once you find a match you'll break and move to the nd element in the first array m if you don't the element in the nd array then you'll break out and return not identical
For that you'll need a nested loop with loops that will go over m and m
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
