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

pow函数


概要:
#include <math.h>
double pow(double x, double y);

描述:

该函数计算表达式xy的值。

如果参数x是有限值,并且是负值;参数y是有限值,但不是整数值,将发生域错误。

如果参数x、参数y都是0,将可能发生域错误。

如果参数x等于0,参数y小于0,将可能发生域错误或者极点错误。

该函数可能会发生范围错误(range error)


参数:
double x

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

double y

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


返回值:

函数返回xy的值。


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

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

int main(void)
{
    double x = 3.0, y = 4.0;
    double z;

    z = pow(x, y);
    printf("The value of %.6f raised to the power %.6f is %.6f.\n", x, y, z);

    return 0;
}

输出:

The value of 3.000000 raised to the power 4.000000 is 81.000000.


相关内容:
powf float类型的幂函数。
powl long double类型的幂函数。