C++ Math isnan()函数
该函数用于检查一个数是否为非数字。如果该数为NaN,则返回1,否则返回0。
注意:NaN是指浮点数元素中不可表示的值,如负数的平方根或0/0的结果。
语法
假设一个数为’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
#include
using namespace std;
int main()
{
float x=0.0/0.0;
cout<<"value of x is : "<
输出:
value of x is : -nan
isnan(x) : 1
在这个示例中,isnan(x)确定x的值是nan。因此,它返回1。
示例2
让我们看一个简单的示例,其中x的值为4.3。
#include
#include
using namespace std;
int main()
{
float x=4.3;
cout<<"value of x is : "<
输出:
value of x is : 4.3
isnan(x) : 0
在这个示例中,isnan(x)函数确定x的值不是’nan’。因此,它返回0的值。