CJCoding With Joseph

Handle Invalid Number Format

Read one line of input and parse it to an int with int.Parse, then print Number: <n>. If the text is not a valid integer, int.Parse throws a FormatException — catch it and print exactly Not a number. Use top-level statements with try/catch.

Input 42 prints: Number: 42
Input abc prints: Not a number

Expected Output:

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