Browse Source

removeLast

Methode remove hinzugefügt
main
Nico B 2 years ago
parent
commit
c8db5eecc7
  1. 11
      .project
  2. BIN
      ArrayManipulation.class
  3. 22
      ArrayManipulation.java

11
.project

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Prog2</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>

BIN
ArrayManipulation.class

22
ArrayManipulation.java

@ -0,0 +1,22 @@
import java.util.Arrays;
public class ArrayManipulation {
public static int[] reverseArray(int[] arr) {
for (int i = 0; i < arr.length/2; i++) {
int tmp = arr[i];
arr[i] = arr[arr.length - 1 - i];
arr[arr.length - 1 - i] = tmp;
}
return arr;
}
public static void main(String[] args) {
int[] arr = {1,2,3,4,5};
System.out.println(Arrays.toString(reverseArray(arr)));
}
}
Loading…
Cancel
Save