C++ Math isgreater()函数
isgreater() 函数确定函数中给定的第一个参数的值是否大于第二个参数的值。如果第一个数字大于,则返回1,否则返回0。
注意:如果一个或两个函数的参数都是NAN,则返回0。
语法
考虑两个数字 ‘x’ 和 ‘y’。语法应该是:
bool isgreater(float x, float y);
bool isgreater(double x, double y);
bool isgreater(long double x, long double y);
bool isgreater(Arithmetic x, Arithmetic y);
注意:算术类型可以是任何类型。它可以是浮点类型、双精度类型、长双类型、整型或字符型。如果任何参数是整型类型,则它被强制转换为双精度类型。
参数
x,y :我们想要比较的值。
返回值
Parameter(x,y) | Return value |
---|---|
x>y | 1 |
x | 0 |
示例1
让我们看一个简单的示例,当x和y都是相同类型时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=9.0;
float y=7.0;
cout<<"Values of x and y are : "<<x<<","<<y<<'\n';
cout<<"isgreater(x,y) : "<<isgreater(x,y);
return 0;
}
输出:
Values of x and y are : 9.0,7.0
isgreater(x,y) : 1
在这个示例中,isgreater()函数判断x的值是否大于y。因此,它返回1。
示例2
让我们看一个简单的示例,当x和y是不同类型时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x=45.4;
char y='c';
cout<<"Values of x and y are : "<<x<<","<<y<<'\n';
cout<<"isgreater(x,y) : "<<isgreater(x,y);
return 0;
}
输出:
Values of x and y are : 45.4,c
isgreater(x,y) : 0
在这个示例中,isgreater()函数确定x的值小于y,因为’c’的ASCII值大于x的值。因此,它返回0。
示例3
让我们看一个简单的示例,当x等于NAN时。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
double x=0.0/0.0;
double y=12.3;
cout<<"Values of x and y are : "<<x<<","<<y<<'\n';
cout<<"isgreater(x,y) : "<<isgreater(x,y);
return 0;
}
输出:
Values of x and y are : nan , 12.3
isgreater(x,y) : 0
在这个示例中,x的值是NAN。因此,函数返回0。