CJCoding With Joseph

Invalid Operation on an Empty List

Read an integer n. Create an empty List<int> and add n only if n > 0. Then print the first element with list.First(). Calling First() on an empty sequence throws an InvalidOperationException — catch it and print exactly List is empty. Use top-level statements with try/catch.

Input 5 prints: 5
Input 0 prints: List is empty

Expected Output:

5
Topics:
Exceptions
📥 Auto-Input:
5\n
This input is automatically fed to your program's stdin
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.