Question: Write a the reverseArray method that will take in the array argument and return a new array in reverse order. So, array {1, 2, 3,
Write a the reverseArray method that will take in the array argument and return a new array in reverse order. So, array {1, 2, 3, 4, 5} becomes array {5, 4, 3, 2, 1}.
Use the following as a starting point.
public class ReverseQuiz ( public static void main (Stringl args) int [ ] a {1, 2, 3, 5, 10); printArray (a) int [ ] b = reverseArray (a); printArray (b); public static void printArray (int x)t for (int ? 0; ?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
