C++ Math scalbln()函数
该函数计算给定数字乘以FLT_RADX的指数幂的乘积。
假设一个数字为’x’,指数为’n’
scalbn(x,n) = x * ( FLT_RADX)n
语法
float scalbln(float x, long int n);
double scalbln(double x, long int n);
long double scalbln(long double x, long int n);
double scalbln(integral x, long 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=3;
long n=3L;
std::cout << "Value of x is: " <<x<< std::endl;
cout<<"3 * 2^3 = "<<scalbn(x,n);
return 0;
}
输出:
Value of x is: 3
3 * 2^3 = 24
示例2
让我们看一个简单的示例,当x的值为浮点类型时
#include <iostream>
#include<math.h>
#include<float.h>
using namespace std;
int main()
{
float x=7.2;
long n=2L;
std::cout << "Value of x is : " <<x<< std::endl;
cout<<"7.2 * 2^2 = "<<scalbln(x,n);
return 0;
}
输出:
Value of x is : 7.2
7.2 * 2^2 = 28.8