CJCoding With Joseph

ArgumentNullException

Read one line. Treat the literal text null as a null string. If the value is null, throw new ArgumentNullException("name"); otherwise print Hi <name>. Catch the ArgumentNullException and print Name is required. Use top-level statements.

Input Bob prints: Hi Bob
Input null prints: Name is required

Expected Output:

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