1 2 3 4 5
int[] arr = {2, 7, 4, 8, 0, 3}; for (int i = arr[0]; i < arr.length; i++) { System.out.println(arr[i]); }