Answers for "how to find the last index of the integer array in java"

4

get last index of array java

int[] someArray = {1,2,3,4,5};
int first = someArray[0];
int last = someArray[someArray.length - 1];
System.out.println("First: " + first + "\n" + "Last: " + last);
Posted by: Guest on August-16-2020

Code answers related to "how to find the last index of the integer array in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language