C++ Math scalbn()函数
该函数计算给定数字与FLT_RADX的指数幂的乘积。
假设数字是’x’,指数是’n’
scalbn(x,n) = x * ( FLT_RADX)n
语法
float scalbn(float x, int n);
double scalbn(double x, int n);
long double scalbn(long double x, int n);
double scalbn(integral x, int n);
参数
x : 表示尾数的值。
n : 表示指数的值。
返回值
返回 x 乘以 FLT_RADX 的 n 次方的结果。
示例1
让我们看一个简单的示例,当 x 的值为整数类型时。
#include <iostream>
#include<math.h>
#include<float.h>
using namespace std;
int main()
{
int x=4;
int n=2;
std::cout << "Value of x is : " <<x<< std::endl;
cout<<"4 * 2^2 = "<<scalbn(x,n);
return 0;
}
输出:
Value of x is : 4
4 * 2^2 = 16
在这个示例中,x的值是4。因此,scalbn()函数通过FLT_RADX的2次方来缩放4。
示例2
让我们看一个简单的示例,当x的值是浮点类型时。
#include <iostream>
#include<math.h>
#include<float.h>
using namespace std;
int main()
{
float x=3.4;
int n=5;
std::cout << "Value of x is : " <<x<< std::endl;
cout<<"3.4 * 2^5 = "<<scalbn(x,n);
return 0;
}
输出:
Value of x is : 3.4
3.4 * 2^5 = 108.8
在这个示例中,x的值是3.4。因此,scalbn()函数将3.4按FLT_RADX的5次幂进行缩放。