97
Java Program to find Second Largest Number in an Array
We can find the second largest number in an array in java by sorting the array and returning the 2nd largest number. Let’s see the full example to find the second largest number in java array.
Output:
Second Largest: 5 Second Largest: 77
Find 2nd Largest Number in Array using Arrays
Let's see another example to get second largest element or number in java array using collections.
Output:
Second Largest: 5 Second Largest: 77
Find 2nd Largest Number in Array using Collections
Let's see another example to get second largest number in java array using collections.
Output:
Second Largest: 5 Second Largest: 77
Next TopicJava Programs