该函数判断给定的数字是否正常。如果数字正常,则返回 1,否则返回 0。
用法
假设一个数字是 'x'。语法是:
bool isnormal(float x);
bool isnormal(double x);
bool isnormal(long double x);
bool isnormal(integral x);
参数
x: 它是一个浮点值。
返回值
参数(x) | 返回值 |
---|---|
Infinite | 0 |
正常值 | 1 |
低于正常值 | 0 |
不是数字 | 0 |
例子1
让我们看一个简单的例子。
#include <iostream>
#include<math.h>
using namespace std;
int main()
{
std::cout << "isnormal(5) is:" <<isnormal(5)<< std::endl;
std::cout << "isnormal(5.0/0.0) is:" <<isnormal(5.0/0.0)<< std::endl;
std::cout << "isnormal(0.0/0.0) is:" <<isnormal(0.0/0.0)<< std::endl;
return 0;
}
输出:
isnormal(5) is:1 isnormal(5.0/0.0) is:0 isnormal(0.0/0.0) is:0
相关用法
- C++ Math isnan()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math isunordered()用法及代码示例
- C++ Math islessequal()用法及代码示例
- C++ Math isgreaterequal()用法及代码示例
- C++ Math isinf()用法及代码示例
- C++ Math ilogb()用法及代码示例
- C++ Math scalbn()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math erfc()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math isnormal()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。