islessgreater() 函数确定第一个参数的值是小于还是大于第二个参数的值。如果第一个参数的值小于或大于第二个参数,则返回 1,否则返回 0。
注意:如果一个或两个参数都是 NAN,则函数返回 false(0)。
用法
考虑两个数字 'x' 和 'y'。语法是:
bool islessgreater(float x, float y);
bool islessgreater(double x, double y);
bool islessgreater(long double x, long double y);
bool islessgreater(Arithmetic x, Arithmetic y);
参数
(x,y):我们要比较的值。
返回值
参数 | 返回值 |
---|---|
x>y 或 x1 |
|
x=y 或 x=nan 或 y=nan | 0 |
例子1
让我们看一个简单的例子,当 x 和 y 都相等时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=1.2;
float y=1.2;
cout<<"Values of x and y are:"<<x<<","<<y<<'\n';
cout<<"islessgreater(x,y):"<<islessgreater(x,y);
return 0;
}
输出:
Values of x and y are:1.2,1.2 islessgreater(x,y):0
在此示例中,x 和 y 的值相等。因此,该函数返回 0。
例子2
让我们看一个简单的例子,当 x 和 y 是不同的类型并且不相等时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
int x=7;
float y=3.2;
cout<<"Values of x and y are:"<<x<<","<<y<<'\n';
cout<<"islessgreater(x,y):"<<islessgreater(x,y);
return 0;
}
输出:
Values of x and y are:7,3.2 islessgreater(x,y):1
在本例中,x 的值大于 y 的值。因此,该函数返回 1。
例子3
当 x 的值为 NAN 时,让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=0.0/0.0;
float y=3.2;
cout<<"Values of x and y are:"<<x<<","<<y<<'\n';
cout<<"islessgreater(x,y):"<<islessgreater(x,y);
return 0;
}
输出:
Values of x and y are:nan,3.2 islessgreater(x,y):0
在本例中,x 的值为 NAN。因此,该函数返回 0。
相关用法
- C++ Math islessequal()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math isunordered()用法及代码示例
- C++ Math isnormal()用法及代码示例
- C++ Math isgreaterequal()用法及代码示例
- C++ Math isnan()用法及代码示例
- C++ Math isinf()用法及代码示例
- C++ Math ilogb()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math erfc()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math islessgreater()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。