← Back to Exceptions
Question 679
Substring Out Of Range
Substring Out Of Range
Read a string and print its first three characters usings.Substring(0, 3). If the string is shorter than three characters,Substringthrows anArgumentOutOfRangeException— catch it and print exactlyToo short. Use top-level statements withtry/catch. Inputhelloprints: hel Inputhiprints: Too short
Expected Output:
hel
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.