该函数返回给定数字的 index 部分,即 logx 的整数部分。
ilogb() 函数等价于 (int)logb()
用法
int ilogb(float x);
int ilogb(double x);
int ilogb(long double x);
int ilogb(integral x);
参数
x: 它是要计算其 index 的值。
返回值
参数 | 返回值 |
---|---|
x=0 | -INT_MIN |
x=NAN 或 +inf 或 _inf | INT_MAX |
示例
让我们看一个简单的例子
#include <iostream>
#include<math.h>
#include<float.h>
using namespace std;
int main()
{
int x=4;
std::cout << "Value of x is:" <<x<< std::endl;
cout<<"Exponent value of x is:"<<ilogb(x);
return 0;
}
输出:
Value of x is:4 Exponent value of x is:2
相关用法
- C++ Math isgreater()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math isunordered()用法及代码示例
- C++ Math islessequal()用法及代码示例
- C++ Math isnormal()用法及代码示例
- C++ Math isgreaterequal()用法及代码示例
- C++ Math isnan()用法及代码示例
- C++ Math isinf()用法及代码示例
- 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 ilogb()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。