在C++中,isless()是用于数学计算的预定义函数。 math.h是各种数学函数所需的头文件。
isless()函数,用于检查赋予该函数的第一个参数是否小于赋予该函数的第二个参数。表示如果a是第一个参数,b是第二个参数,那么它将检查a
用法:
bool isless(a, b)
- a,b =>这两个是我们要比较其值的参数。
- 如果出现以下情况,该函数将返回true
- 此函数没有错误发生。
- 如果a或b或两者均为NaN,则该函数引发异常并返回false(0)。
参数:
结果:
错误:
异常:
// CPP code to illustrate
// the exception of function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Take any values
int a = 5;
double b = nan("1");
bool result;
// Since b value is NaN so
// with any value of a, the function
// always return false(0)
result = isless(a, b);
cout << a << " isless than " << b
<< ":" << result;
return 0;
}
输出:
5 isless than nan:0
例:
- 程序:
// CPP code to illustrate // the use of isless function #include <bits/stdc++.h> using namespace std; int main() { // Take two any values int a, b; bool result; a = 5; b = 8; // Since 'a' is not greater // than 'b' so answer // is true(1) result = isless(a, b); cout << a << " isless than " << b << ":" << result << endl; char x = 'a'; // Since 'a' ascii value is less // than b vaiable so answer // is true(1) result = isless(x, b); cout << x << " isless than " << b << ":" << result; return 0; }
输出:
5 isless than 8:1 a isless than 8:0
注意:使用此函数,您还可以将任何数据类型与任何其他数据类型进行比较。
应用
在多种应用中,我们可以使用isless()函数比较两个值,例如在while循环中使用以打印前9个自然数。
// CPP code to illustrate
// the use of isless function
#include <bits/stdc++.h>
using namespace std;
int main()
{
int i = 1;
while (isless(i, 10)) {
cout << i << " ";
i++;
}
return 0;
}
输出:
1 2 3 4 5 6 7 8 9
相关用法
注:本文由纯净天空筛选整理自AKASH GUPTA 6大神的英文原创作品 isless() in C/C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。