#include <math.h>
double pow( double base, double exp );
函数返回以参数 base 为底的 exp 次幂。如果 base 为零或负和 exp 小于等于零或非整数时,产生域错误。如果溢出,产生范围错误。
#include <math.h> #include <stdio.h> int main(void) { double x = 2.0, y = 3.0; printf("%lf raised to %lf is %lf\n", x, y, pow(x, y)); return 0; }
输出结果:
2.000000 raised to 3.000000 is 8.000000