CJCoding With Joseph

List Index Out Of Range

A List<int> holds { 5, 10, 15 }. Read an index and print list[index]. Unlike an array, the List<T> indexer throws an ArgumentOutOfRangeException for a bad index; catch it and print Bad index. Use top-level statements with try/catch.

Input 2 prints: 15
Input 9 prints: Bad index

Expected Output:

15
Topics:
Exceptions
๐Ÿ“ฅ Auto-Input:
2\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.