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


C++ isinf()用法及代碼示例


isinf()函數用於確定給定數是否為無窮大,即正無窮大或負無窮大。如果給定數為無窮大,則此函數返回1;否則,此函數返回零。

用法:

bool isinf( float arg );

或者


bool isinf( double arg );

或者

bool isinf( long double arg );

參數:此函數采用強製性參數x,該參數表示給定的浮點值。

返回:如果給定數為無窮大,則此函數返回1,否則返回零。

以下示例程序旨在說明C++中的isinf()函數:

示例1:要顯示返回1的無窮大情況

// c++ program to demonstrate 
// example of isnormal() function. 
  
#include <bits/stdc++.h> 
  
using namespace std; 
  
int main() 
{ 
  
    float f = 6.0F; 
  
    // check for +ve infinite value 
    cout << "isinf(6.0/0.0) is = " << isinf(f/0.0) << endl; 
  
    // check for -ve infinite value 
    f = -1.2F; 
    cout << "isinf(-1.2/0.0) is = " << isinf(f/0.0) << endl; 
  
    return 0; 
}
輸出:
isinf(6.0/0.0) is = 1
isinf(-1.2/0.0) is = 1

說明:在示例1中,浮點數表示無窮大,這就是函數返回1的原因。

示例2:顯示非無限情況返回0

// c++ program to demonstrate 
// example of isinf() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
   cout << "isinf(0.0) is = " << isinf(0.0) << endl; 
  
   cout << "isinf(sqrt(-1.0)) is = " << isinf(sqrt(-1.0)) << endl; 
  
   return 0; 
}
輸出:
isinf(0.0) is = 0
isinf(sqrt(-1.0)) is = 0

異常:在示例2中,給定的浮點數不表示無窮大,這就是函數返回零的原因。



相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 isinf() function in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。