C++中的Log()函数:C++中的log()函数返回在参数中传递的参数的自然对数(以e为底的对数)。
Syntax for returning natural logarithm:
result = log(x)
Syntax for returning logarithm (base-10 logarithm) of the argument.
result = log10(x)
参数可以是任何数据类型,例如int,double或float或long double。
Log()函数根据以下条件返回值:
..a)如果x> 1,则为正
..b)如果0
..d)如果x = 0,则返回-inf
..e)如果x <0,则返回NaN (不是数字)
// CPP program to implement log() function
#include
using namespace std;
// function to evaluate natural logarithm base-e
double valueE(double d)
{
return log(d);
}
// function to evaluate logarithm base-10
double value10(double d)
{
return log10(d);
}
// driver program to test the above function
int main()
{
double d = 10;
cout << "The logarithm value(base-e) of " << d
<< " is " << valueE(d) << endl;
cout << "The logarithm value(base-10) of " << d
<< " is " << value10(d) << endl;
return 0;
}
输出:
The logarithm value(base-e) of 10 is 2.30259
The logarithm value(base-10) of 10 is 1
应用:
log()函数的应用之一是计算与log相关的值,例如,当找到礼貌数字时,我们需要将公式写在代码中,为此我们可以使用log()函数。下面给出的是log()函数。
// CPP program to find Nth polite number
#include
using namespace std;
// function to evaluate n-th polite number
double polite(double n)
{
n += 1;
double base = 2;
return n + (log((n + (log(n) /
log(base))))) / log(base);
}
// driver code
int main()
{
double n = 7;
cout << (int)polite(n);
return 0;
}
输出:
11
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。