该函数检查数字是否为非数字。如果数字是 NaN,则返回 1,否则返回 0。
注意:对于浮点元素,如负数的平方根或 0/0 的结果,NaN 是不可表示的值。
用法
假设一个数字是 'x'。语法是:
bool isnan(float x);
bool isnan(double x);
bool isnan(long double x);
bool isnan(integral x);
参数
x: 它是一个浮点值。
返回值
如果 x 是 NAN,则返回 1,否则返回 0。
例子1
让我们看看 x 的值为 0.0/0.0 时的简单示例。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=0.0/0.0;
cout<<"value of x is:"<<x<<'\n';
cout<<"isnan(x):"<<isnan(x);
return 0;
}
输出:
value of x is:-nan isnan(x):1
在本例中,isnan(x) 确定 x 的值为 nan。因此,它返回 1。
例子2
让我们看看 x 的值为 4.3 时的简单示例。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
float x=4.3;
cout<<"value of x is:"<<x<<'\n';
cout<<"isnan(x):"<<isnan(x);
return 0;
}
输出:
value of x is:4.3 isnan(x):0
在本例中,isnan(x) 函数确定 x 的值不是 'nan'。因此,它返回 0 值。
相关用法
- C++ Math isnormal()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math isunordered()用法及代码示例
- C++ Math islessequal()用法及代码示例
- C++ Math isgreaterequal()用法及代码示例
- 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 isnan()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。