函数
<cmath> <ctgmath>

cbrt

     double cbrt  (double x);      float cbrtf (float x);long double cbrtl (long double x);
     double cbrt (double x);      float cbrt (float x);long double cbrt (long double x);     double cbrt (T x);           // additional overloads for integral types
计算立方根
返回 x立方根

头文件 <tgmath.h> 提供了此函数的类型通用宏版本。
此标头(<cmath>)中为整型类型提供了附加重载:这些重载在计算前有效地将 x 强制转换为 double(为所有整型 T 定义)。

参数

x
计算立方根的值。

返回值

x 的立方根。

示例

1
2
3
4
5
6
7
8
9
10
11
12
/* cbrt example */
#include <stdio.h>      /* printf */
#include <math.h>       /* cbrt */

int main ()
{
  double param, result;
  param = 27.0;
  result = cbrt (param);
  printf ("cbrt (%f) = %f\n", param, result);
  return 0;
}

输出

cbrt (27.000000) = 3.000000


另见