โ Back to Functions
Question 413
Clamp a Value
Clamp a Value
Write a functionint clampValue(int value, int low, int high)that returnslowifvalueis belowlow,highifvalueis abovehigh, andvalueotherwise. Read one integer from standard input and printclampValue(value, 0, 10). For input15the output is: 10
Expected Output:
10
Topics:
Functions
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.