CJCoding With Joseph

Validate Test Score

Complete the validateScore(int score) function.

- If score is less than 0 or greater than 100, throw a std::out_of_range with the message "Score must be between 0 and 100"
- Otherwise, return score

Do NOT write a main function.

Expected Output:

85
Topics:
FunctionsExceptions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.