Horje
last element array java Code Example
get last element of array java
firstNum = numbers[0];
lastNum = numbers[numbers.length-1];
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);
how to get the last element of array in java
int[] arr = new int[5]; //length of the array is 5
int val = arr[arr.length - 1]; //here variable val stores the last element of arr
last element array java
// Array of doubles
double[] array_doubles = {2.5, 6.2, 8.2, 4846.354, 9.6};

// First position
double firstNum = array_doubles[0]; // 2.5

// Last position
double lastNum = array_doubles[array_doubles.length - 1]; // 9.6




Java

Related
python to java convert online Code Example python to java convert online Code Example
getter in java Code Example getter in java Code Example
video compression with java Code Example video compression with java Code Example
java calcuate milliseconds since 1970 Code Example java calcuate milliseconds since 1970 Code Example
substring in java Code Example substring in java Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7