CJCoding With Joseph
15per day

Catch ArrayIndexOutOfBoundsException

An array contains three values: {10, 20, 30}. Read an index from input. Try to print values[index]. If the index is out of range, print "Index out of range".

Use try-catch to handle ArrayIndexOutOfBoundsException.

⚠️ AUTO-INPUT MODE: The input stream will automatically contain '5\n'.

Expected Output:

Index out of range
Topics:
Miscellaneous
📥 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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.