-1

我是一名 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.

感谢您的关注

4

1 回答 1

3

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

bool rangeCheck(int number, int min, int max)
{
    return min < number && number < max;
}
于 2013-10-20T17:26:40.357 回答