Question: C++ please Write a function with the signature: int getValue(int lower, int higher) that asks the user to enter an integer value between lowerand higher(inclusive).
C++ please
Write a function with the signature: int getValue(int lower, int higher) that asks the user to enter an integer value between lowerand higher(inclusive). The function might be used like this: int min = 3; int max = 7; int value; value = getValue(3, 7); cout << "You entered: " << value << endl
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
