โ Back to Exceptions
Question 661
Validate Percentage Range
Validate Percentage Range
Read an integerpercent. If it is< 0or> 100, explicitlythrow new ArgumentOutOfRangeException("percent", "must be 0-100"); otherwise printValid: <p>%. Catch theArgumentOutOfRangeExceptionand printInvalid percentage. Use top-level statements. Input75prints: Valid: 75% Input150prints: Invalid percentage
Expected Output:
Valid: 75%
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.