C ++中的isnormal()

在本节中,我们将看到isnormal()C ++中的函数。该功能存在于cmath库中。此功能用于检查数字是否正常。被视为非正规数的数字是零,无穷大或NAN。

此函数将float,double或long double值用作参数。如果数字正常,则返回1,否则返回0。

示例

#include<iostream>
#include<cmath>
using namespace std;
int main() {
   cout << "isnormal(" << 5.23 << "): " << isnormal(5.23) << endl;
   cout << "isnormal(" << 0.00 << "): " << isnormal(0.00) << endl;
   cout << "isnormal(" << 2.0/0.0 << "): " << isnormal(2.0/0.0) << endl;
}

输出结果

isnormal(5.23): 1
isnormal(0): 0
isnormal(inf): 0