X744: Compare range C++

Given three integer variables called first, second and third, if second is less than first, return false. Otherwise, check if third lies in the inclusive range between first and second, then return true; else, return false.

Your Answer:

Feedback

Your feedback will appear here when you check your answer.