Problem8273--基础函数使用 —— cbrt

8273: 基础函数使用 —— cbrt

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

Description

C++ 中的 cbrt() 函数返回一个数字的立方根。
$\sqrt[3]{x}$,对应 C++11 函数原型如下。
double cbrt(double x);
float cbrt(float x);
long double cbrt(long double x);
double cbrt(T x); // For integral type

Input

一行一个浮点数 x。

Output

一行一个浮点数,表示答案,保留 6 位小数。

Constraints

$-9 \times 10^{18} \leq x \leq 9 \times 10^{18}$

Sample 1 Input

27

Sample 1 Output

3.000000

Sample 2 Input

15

Sample 2 Output

2.466212

Sample 3 Input

9.372

Sample 3 Output

2.108357

Source/Category