You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
627 B

  1. import java.util.Arrays;
  2. public class ArrayManipulation {
  3. public static int[] reverseArray(int[] arr) {
  4. for (int i = 0; i < arr.length/2; i++) {
  5. int tmp = arr[i];
  6. arr[i] = arr[arr.length - 1 - i];
  7. arr[arr.length - 1 - i] = tmp;
  8. }
  9. return arr;
  10. }
  11. public static int[] removeFirst(int[] arr) {
  12. int[] first = new int[arr.length-1];
  13. for (int i = 1; i > first.length; i++) {
  14. first[i-1] = arr[i];
  15. }
  16. return first;
  17. }
  18. public static void main(String[] args) {
  19. int[] arr = {1,2,3,4,5};
  20. System.out.println(Arrays.toString(reverseArray(arr)));
  21. }
  22. }