← Back to Exceptions
Question 682
Invalid Operation on an Empty List
Invalid Operation on an Empty List
Read an integern. Create an emptyList<int>and addnonly ifn > 0. Then print the first element withlist.First(). CallingFirst()on an empty sequence throws anInvalidOperationException— catch it and print exactlyList is empty. Use top-level statements withtry/catch. Input5prints: 5 Input0prints: List is empty
Expected Output:
5
Topics:
Exceptions
Code Editor
1
Tab to indent · Ctrl+Enter to run · Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.