Answers for "get last element of set java"

37

get last element of array java

firstNum = numbers[0];
lastNum = numbers[numbers.length-1];
Posted by: Guest on May-08-2020
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 element of set

// Example program
#include <iostream>
#include <string>
#include <set>
#include <iterator>
using namespace std;
int main()
{
    set<int>a = {5,9,100,25,4,6};
    auto it = a.end();
    it--;
    cout << *it;
}
Posted by: Guest on March-04-2021

Code answers related to "get last element of set java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language