Problem8428--基础函数使用 —— log2

8428: 基础函数使用 —— log2

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

Description

Compute binary logarithm

Returns the binary (base-2) logarithm of x.

Compute binary logarithm
Returns the binary (base-2) logarithm of x.

根据数学知识,我们也可以使用 log() 函数。

$log_2(x)=log_e(x)/log_e(2)$。

Input

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

Output

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

Sample 1 Input

1

Sample 1 Output

0.000

Sample 2 Input

2

Sample 2 Output

1.000

Sample 3 Input

63

Sample 3 Output

5.977

100

6.644

Source/Category