Question: Write a Java program (One class with a main method) to do the following: Ask the user to enter an integer (n) Declare an array
Write a Java program (One class with a main method) to do the following:
- Ask the user to enter an integer (n)
- Declare an array of size n with integer data type.
- Ask the user to enter the values of the array.
- Create another array with of size n with integer data type.
- Make a copy of the first array to the second array but in reverse order (e.g., the last element in the first array should be store in the first element in the second array and so on).
- Output values stored in the two arrays.
- Find and output how many values in both arrays are equal based on the index number, i.e. count matching values of two arrays based on same index value AND the element value of the array.
fast
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
