Answers for "find last item in the Array java rx"

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
1

how to find last element in array java

// GIVE FIRST NUMBER AND LAST NUMBER
firstNum = numbers[0];
lastNum = numbers[numbers.length-1];
Posted by: Guest on August-09-2020

Code answers related to "find last item in the Array java rx"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language