Answers for "how to find last index of an input in array java"

3

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
0

how to get last index of array in java

//grabing a last element of the array
firstNum = numbers[0];
lastNum = numbers[numbers.length-1];
Posted by: Guest on August-06-2021

Code answers related to "how to find last index of an input in array java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language