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);
注意:算术类型可以是任何类型。它可以是 float、double、long double、int 或 char。如果任何参数是整数类型,则将其强制转换为 double。
参数
x,y:我们要比较的值。
返回值
参数(x,y) | 返回值 |
---|---|
x>y | 1 |
x0 |
|
例子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。
相关用法
- C++ Math isgreaterequal()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math isunordered()用法及代码示例
- C++ Math islessequal()用法及代码示例
- C++ Math isnormal()用法及代码示例
- 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 isgreater()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。