Browse Source

hello

System print hello
main
Nico B 2 years ago
parent
commit
17f83731c8
  1. 11
      ArrayManipulation.java

11
ArrayManipulation.java

@ -12,11 +12,22 @@ public class ArrayManipulation {
}
return arr;
}
public static int [] removeLast(int[] arr) {
int [] result = new int [arr.length-1];
for (int i =0; i<arr.length-1; i++) {
result[i] = arr[i];
}
return result;
}
public static void main(String[] args) {
int[] arr = {1,2,3,4,5};
System.out.println(Arrays.toString(reverseArray(arr)));
System.out.println(Arrays.toString(removeLast(arr)));
System.out.println("Hello");
}
}
Loading…
Cancel
Save