cbrtf函数
概要:
#include <math.h> float cbrtf(float x);
描述:
该函数计算参数的立方根。
参数:
float x
参数为一个float类型的浮点数。
返回值:
函数返回的值。
范例:
|
|
输出:
The cube root of 8.000000 is 2.000000.
相关内容:
cbrt | double类型的立方根函数。 |
cbrtl | long double类型的立方根函数。 |