The function log2() of cmath header file in C++ is used to find the logarithmic value with base 2 of the passed argument.
Syntax:
log2(x)
Parameters: This function takes a value x, in the range [0, ∞] whose log value is to be found.
Return Type: It returns the logarithmic value, as double, float or long double type, based on the following conditions:
- If x > 1: It returns the positive logarithmic value of x.
- If x is equals to 1: It returns 0.
- If 0 < x < 1: It returns the negative logarithmic value of x.
- If x is equals to 0: It returns the negative infinity(-∞).
- If x < 0: It returns NaN(Not a Number).
Below examples demonstrate the use of log2() method:
Example 1:
#include <bits/stdc++.h>
using namespace std;
int main()
{
long b = 16;
float c = 2.5;
double d = 10.35;
long double e = 25.5;
cout << log2(b) << "\n" ;
cout << log2(c) << "\n" ;
cout << log2(d) << "\n" ;
cout << log2(e) << "\n" ;
return 0;
}
|
Output:
4
1.32193
3.37156
4.67243
Example 2:
#include <bits/stdc++.h>
using namespace std;
int main()
{
int a = 0;
int b = -16;
cout << log2(a) << "\n" ;
cout << log2(b) << "\n" ;
return 0;
}
|
Reference: http://www.cplusplus.com/reference/cmath/log2/
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
04 May, 2020
Like Article
Save Article