该函数计算给定数字与 FLT_RADX 的 index 次幂的乘积。
假设一个数是 'x', index 是 '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: index 的值。
返回值
它返回 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
相关用法
- C++ Math scalbn()用法及代码示例
- C++ Math sinh()用法及代码示例
- C++ Math sin()用法及代码示例
- C++ Math signbit()用法及代码示例
- C++ Math sqrt()用法及代码示例
- C++ Math acosh()用法及代码示例
- C++ Math asinh()用法及代码示例
- C++ Math isgreater()用法及代码示例
- C++ Math fabs()用法及代码示例
- C++ Math islessgreater()用法及代码示例
- C++ Math log2()用法及代码示例
- C++ Math nearbyint()用法及代码示例
- C++ Math tan()用法及代码示例
- C++ Math log()用法及代码示例
- C++ Math nextafter()用法及代码示例
- C++ Math fdim()用法及代码示例
- C++ Math isfinite()用法及代码示例
- C++ Math erfc()用法及代码示例
- C++ Math cosh()用法及代码示例
- C++ Math fma()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Math scalbln()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。