CJCoding With Joseph

Clamp a Value

Write a function int clampValue(int value, int low, int high) that returns low if value is below low, high if value is above high, and value otherwise. Read one integer from standard input and print clampValue(value, 0, 10).

For input 15 the output is:

10

Expected Output:

10
Topics:
Functions
๐Ÿ“ฅ Auto-Input:
15\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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.