📅  最后修改于: 2020-10-19 00:28:25             🧑  作者: Mango
islessequal()函数检查第一个参数的值是否小于或等于第二个参数。如果第一个参数的值小于或等于第二个参数的值,则返回1,否则返回0。
注意:如果一个或两个参数均为NAN,则该函数返回false(0)。
考虑两个数字“ x”和“ y”。语法为:
bool islessequal(float x,float y);
bool islessequal(double x,double y);
bool islessequal(long double x,long double y);
bool islessequal(Arithmetic x,Arithmetic y);
(x,y):我们要比较的值。
Parameter(x,y) | Return value |
---|---|
x<=y | 1 |
x>y or x=nan or y=nan | 0 |
让我们看一个简单的例子,当x和y属于同一类型时。
#include
#include
using namespace std;
int main()
{
float x= 3.4;
float y=3.4;
cout<<"Values of x and y are : "<
输出:
Values of x and y are : 3.4,3.4
islessequal(x,y) : 1
在此示例中,islessequal()函数确定x和y相等。因此,它返回1。
让我们看一个简单的示例,其中x和y都是不同的类型。
#include
#include
using namespace std;
int main()
{
float x= 7.8;
int y=2;
cout<<"Values of x and y are : "<
输出:
Values of x and y are : 7.8,2
islessequal(x,y) : 0
在此示例中,x大于y。因此,该函数返回0。
让我们看一个简单的例子。
#include
#include
using namespace std;
int main()
{
float x= 0.0/0.0;
float y=0.0/0.0;
cout<<"Values of x and y are : "<
输出:
Values of x and y are : nan,nan
islessequal(x,y) : 0
在此示例中,x和y均为NAN。因此,该函数返回0。