scalbn()函数在cmath头文件中定义。此函数用于计算给定数x与提高到幂n的FLT_RADIX的乘积。
句法:-
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);
参数:-此方法采用两个参数:
- ×:表示有效值。
- n:代表指数的值。
返回值:该函数返回给定数字x和FLT_RADIX乘幂n的乘积。在公式的帮助下:
scalbn(x, n) = x * FLT_RADIXn
下面的程序说明了上述函数:-
范例1:-
// C++ program to demonstrate
// example of scalbn() function.
#include
using namespace std;
int main()
{
int n = 7;
int x = 5;
int ans;
ans = scalbn(x, n);
cout << x << " * "
<< FLT_RADIX << "^"
<< n << " = "
<< ans << endl;
return 0;
}
输出:
5 * 2^7 = 640
示例2:
// C++ program to demonstrate
// example of scalbn() function.
#include
using namespace std;
int main()
{
int n = 7;
double x = 3.9;
int ans;
ans = scalbn(x, n);
cout << x << " * "
<< FLT_RADIX << "^"
<< n << " = "
<< ans << endl;
return 0;
}
输出:
3.9 * 2^7 = 499
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。