cbrt、cbrtf、cbrtl
计算立方根。
double cbrt( double x ); float cbrt( float x ); // C++ only long double cbrt( long double x ); // C++ only float cbrtf( float x ); long double cbrtl( long double x );
参数
- x
浮点值
返回值
cbrt 函数返回 x 的立方根。
输入 |
SEH 异常 |
_matherr 异常 |
---|---|---|
± ∞、QNAN、IND |
无 |
无 |
备注
由于 C++ 允许重载,因此你可以调用采用 float 或 long double 类型的 cbrt 重载。 在 C 程序中,cbrt 始终采用并返回 double。
要求
函数 |
C 标头 |
C++ 标头 |
---|---|---|
cbrt, cbrtf, cbrtl |
<math.h> |
<cmath> |
有关其他兼容性信息,请参见兼容性。
示例
// crt_cbrt.c
// Compile using: cl /W4 crt_cbrt.c
// This program calculates a cube root.
#include <math.h>
#include <stdio.h>
int main( void )
{
double question = -64.64;
double answer;
answer = cbrt(question);
printf("The cube root of %.2f is %.6f\n", question, answer);
}
.NET Framework 等效项
不适用。若要调用标准 C 函数,请使用 PInvoke。有关详细信息,请参见平台调用示例。