โ Back to Exceptions
Question 687
Validate a Range
Validate a Range
Read ascore. Valid scores are0to100inclusive. If the score is outside that range,throw new ArgumentOutOfRangeException(nameof(score), "score must be 0-100"). Otherwise printScore: <score>. Catch the exception and print exactlyScore out of range. Use top-level statements withtry/catch. Input80prints: Score: 80 Input150prints: Score out of range
Expected Output:
Score: 80
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.