ldexp()函数采用两个参数a和b并返回a和2的乘积,其乘积为b的幂,即a *(2 b )。
句法:
double ldexp (double a, double b);
float ldexp (float a, float b);
long double ldexp (long double a, long double b);
- The ldexp() function takes two arguments a, b and computes a * (2b).
- Here a and b can be anything which is valid.
Return:
- The ldexp() function returns a * (2^b) if we pass a and b as the arguments.
Parameter:
- 必须提供两个参数,否则将给调用ldexp()的匹配函数带来错误。
- 如果我们将字符串作为参数传递,则对于’ldexp(const char [n],const char [n])的调用,将没有错误的匹配函数。
- 如果我们同时传递std :: numeric_limits :: max()作为两个参数,我们将得到inf(infinity)作为输出。
与该函数相关的错误和异常:
例子:
Input : ldexp(5.35, 4)
Output : 85.6
Input : ldexp(25, 5)
Output : 800
#代码1
// CPP implemenatation of the
// above function
#include
#include
using namespace std;
int main()
{
double a = 5.35;
int b = 4;
cout << ldexp(a, b);
return 0;
}
输出:
85.6
#代码2
// CPP implementation of the
// above function
#include
#include
using namespace std;
int main()
{
int a = 25, b = 5;
cout << ldexp(a, b);
return 0;
}
输出:
800
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。