当前位置: C语言 -- 标准库 -- <math.h> -- cbrt

cbrt函数


概要:
#include <math.h>
double cbrt(double x);

描述:

该函数计算参数x的立方根。


参数:
double x

参数为一个double类型的浮点数。


返回值:

函数返回x1/3的值。


范例:
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
/*函数cbrt范例*/

#include <math.h>
#include <stdio.h>

int main(void)
{
    double x = 8.0;
    double y;

    y = cbrt(x);
    printf("The cube root of %.6f is %.6f.\n", x, y);

    return 0;
}

输出:

The cube root of 8.000000 is 2.000000.


相关内容:
cbrtf float类型的立方根函数。
cbrtl long double类型的立方根函数。