当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ isfinite()用法及代码示例


isfinite()函数是C++中的内置函数,用于确定给定值是否有限。有限值是既不是无限也不是NAN的值。如果数字是有限的,则该函数返回1,否则返回零。

用法:

bool isfinite(float x);  

or,
bool isfinite(double x);

or,  
bool isfinite(long double x); 

参数:该函数仅需一个参数x。它代表浮点数。


返回值:如果数字是无限的或NAN,则返回0;否则,返回1。

以下示例程序旨在说明C++中的isfinite()函数:
示例1:

// C++ program to illutrate the 
// isfinite() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    float x = 19.0; 
      
    cout<<"The value of x is = "<< x << endl; 
  
    // Here function check whether 19 is finite or not 
    // if yes function returns 1, else 0 
    cout<<"isfinite(x) = "<<isfinite(x); 
      
    return 0; 
}
输出:
The value of x is = 19
isfinite(x) = 1

示例2:

// C++ program to illutrate the 
// isfinite() function 
  
#include <bits/stdc++.h> 
using namespace std;  
  
int main()  
{  
    float x=9.6/0.0;  
      
    cout<<"The value of x is = "<< x << endl;  
      
    cout<<"isfinite(x) = "<<isfinite(x);  
      
    return 0;  
} 
输出:
The value of x is = inf
isfinite(x) = 0

示例3:

// C++ program to illutrate the 
// isfinite() function 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{    
    // Value is NAN 
    double x=0.0/0.0;  
      
    cout<<"Value of x is = "<< x << endl; 
      
    cout<<"isfinite(x) = "<<isfinite(x);  
      
    return 0; 
}
输出:
Value of x is = -nan
isfinite(x) = 0


相关用法


注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 isfinite() function in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。