C++ Math log()函数

C++ Math log()函数

该函数用于找到给定数字的自然对数(以e为底的对数)。

数学上

假设’x’是一个给定的数字:

logex = log(x);

语法

float log(float x);
double log(double x);
long double log(long double x);
double log(integral x);

参数

x :要计算自然对数的值。

返回值

返回给定数字的值如下:

Parameter(x) Return value
x>1 Positive
x=1 0
1>x>0 Negative
x=0 -infinty
x<0 Not a Number(nan)

示例1

让我们来看一个简单的示例,当 x 的值为 1 时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    int x=1;
    std::cout << "Value of x is : " <<x <<std::endl;
    cout<<"Log value of x is : "<<log(x);
    return 0;
}

输出:

Value of x is : 1
Log value of x is : 0

在这个示例中,x的值是1。因此,函数log()返回一个正值,即0。

示例2

让我们看一个简单的示例。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    int x=3;
    std::cout << "Value of x is : " <<x <<std::endl;
    cout<<"Log value of x is : "<<log(x);
    return 0;
}

输出:

Value of x is : 3
Log value of x is : 1.09861

在这个示例中,x的值为3。因此,函数log()返回正值,即1.09861。

示例3

让我们看一个简单的示例,当x的值为-0.5时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float x= -0.5;
    std::cout << "Value of x is : " <<x <<std::endl;
    cout<<"Log value of x is : "<<log(x);
    return 0;
}

输出:

Value of x is : -0.5
Log value of x is : nan

在这个示例中,x的值是-0.5。因此,函数log()返回了一个非数字(nan)。

示例4

让我们来看一个简单的示例,当x的值为0时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    int x= 0;
    std::cout << "Value of x is : " <<x <<std::endl;
    cout<<"Log value of x is : "<<log(x);
    return 0;
}

输出:

clValue of x is : 0
Log value of x is : -inf

在这个示例中,x的值是-1。因此,函数log()返回nan(不是一个数)。

示例5

让我们看一个简单的示例,当x的值是0.8时。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float x=0.8;
    std::cout << "Value of x is : " <<x <<std::endl;
    cout<<"Log value of x is : "<<log(x);
    return 0;
}

输出:

Value of x is : 0.8
Log value of x is : -0.223144

在这个示例中,x 的值为 0.8。因此,log() 函数返回负值,即 -0.22

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程