當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。