pow
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <math.h> 中定义
|
||
float powf( float base, float exp ); |
||
double pow( double base, double exp ); |
||
long double powl( long double base, long double exp ); |
||
base
次方计算值exp
或iexp
.原文:
Computes the value of
base
raised to the power exp
or iexp
.[编辑] 参数
base | - | 浮点值的基础
|
exp | - | 指数浮点值
|
iexp | - | 指数为整数值
|
[编辑] 返回值
base
提出的功率(exp
或iexp
) 域错误当
base
是0和exp
是小于或等于0。 NAN是在这种情况下,返回.原文:
Domain error occurs if
base
is 0 and exp
is less than or equal to 0. NAN is returned in that case.域发生错误,如果
base
是负的且exp
不是一个整数的值。 NAN是在这种情况下,返回.原文:
Domain error occurs if
base
is negative and exp
is not an integer value. NAN is returned in that case.范围错误发生,如果发生溢出。 HUGEVAL是在这种情况下,返回.
原文:
Range error occurs if an overflow takes place. HUGEVAL is returned in that case.
[编辑] 另请参阅
返回“E”提出的功率(ex) 原文: returns e raised to the given power (ex) (函数) | |
计算自然(基地“E”)对数(基地“E”)(ln(x)) 原文: computes natural (base e) logarithm (to base e) (ln(x)) (函数) | |
计算平方根(√x) (函数) | |
(C99) |
计算立方米的根(3√x) (函数) |
C++ documentation for pow
|