Question
you will write a method reverseArray that takes as input an int array and constructs, fills, and returns an array with the order of elements
you will write a method reverseArray that takes as input an int array and constructs, fills, and returns an array with the order of elements reversed. For example, If we declare: int[] arr = { 1, 2, 3, 4, 5 }; then reverseArray(arr) should return the array { 5, 4, 3, 2, 1 } reverseArray( { 0, -1, 6, -1, 6} ) should return the array { 6, -1, 6, -1, 0 } reverseArray( { 0 } ) should return the array { 0 }.
You must not use System.out.print or System.out.println in your method or advanced arrays or use split(). Complete the method in the space below:
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started