CJCoding With Joseph

Substring Out Of Range

Read a string and print its first three characters using s.Substring(0, 3). If the string is shorter than three characters, Substring throws an ArgumentOutOfRangeException — catch it and print exactly Too short. Use top-level statements with try/catch.

Input hello prints: hel
Input hi prints: Too short

Expected Output:

hel
Topics:
Exceptions
📥 Auto-Input:
hello\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.