โ Back to Arrays
Question 427
Find Second Smallest Element
Find Second Smallest Element
An arrayint nums[] = {5, 2, 8, 1, 9, 3}is given. Print the second smallest element. The smallest value is1, so the second smallest is2: 2 Print only the number and a newline.
Expected Output:
2
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.