Respuesta :
Answer:
public static void SwapArrayEnds(int[] arr) {
int temp = arr[0];
arr[0] = arr[arr.length-1];
arr[arr.length-1] = temp;
}
Explanation:
- Create a function called SwapArrayEnds that takes one parameter, an integer array
- Inside the function, declare a temporary variable and set it to the first element of the array
- Assign the value of the last element of the array to the first element, the first element in the array is swapped
- Assign the value of the temporary variable to the last element, the last element in the array is swapped
Answer:
public static void swapArrayEnds(int[] newArray){
int num = newArray[0] ;
newArray[0] = newArray[newArray.length-1];
newArray[newArray.length-1] = num;
}
Explanation: