โ Back to Arrays
Question 241
Second Largest Element
Second Largest Element
An int array is given. Find and print the second largest value (the largest value that is still smaller than the overall maximum).
For the array {12, 5, 19, 3, 8} the largest is 19 and the second largest is 12, so the program prints:
12Expected Output:
12
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.