Problem8427--基础函数使用 —— log

8427: 基础函数使用 —— log

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

求以实数 $e$ 为底的对数函数。
自然常数,符号 $e$,为数学中一个常数,是一个无限不循环小数,且为超越数,其值约为2.718281828459045。
     double log (double x);
      float log (float x);
long double log (long double x);
     double log (T x);           // additional overloads for integral types
Compute natural logarithm.
Returns the natural logarithm of $x$.
The natural logarithm is the base-e logarithm: the inverse of the natural exponential function (exp).

Input

一个实数 $x\ (−10^9≤x≤10^9)$。

Output

一个实数,保留 $5$ 位小数点精度。

Sample 1 Input

999

Sample 1 Output

6.90675

Sample 2 Input

860

Sample 2 Output

6.75693

Sample 3 Input

1

Sample 3 Output

0.00000

2

0.69315

Sample 4 Input

3

Sample 4 Output

1.09861

Source/Category