是否有标准功能来检查数字是否在范围内?

时间:2013-10-20 16:55:42

标签: c++

我是C ++学生。

为了提高我在学校测验中的编程速度,我想知道有一个标准功能可以检查一个数字是否在我给出的范围内。

I know it must be a stupid question. 
Since typing "if ((x>A)&&(X<B))" is quite unefficient, 
if there is a standard function like 
if (inrge(-3,18,99))    :    inrge(double A, double x, double B)" 
or other faster ways to do the same, It will be more efficient.

感谢您的关注

1 个答案:

答案 0 :(得分:3)

没有标准功能(据我所知)。虽然做一个是微不足道的。

bool rangeCheck(int number, int min, int max)
{
    return min < number && number < max;
}