我是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.
感谢您的关注
答案 0 :(得分:3)
没有标准功能(据我所知)。虽然做一个是微不足道的。
bool rangeCheck(int number, int min, int max)
{
return min < number && number < max;
}