《Linux函数调用手册》之___pow计算次方值
定义:
double pow(double x,double y);
表头文件:
#include <math.h>
说明:
pow()用来计算以x为底的y次方值, 即xy值, 然后将结果返回。
返回值:
返回x的y次方计算结果。
相关函数:
exp, log, log10
错误代码:
EDOM 参数x为负数且参数y不是整数。
附加说明:
使用GCC编译时请加入-lm。
示例:
#include <math.h>
main()
{
    double answer;
    answer =pow(2,10);
    printf("2^10 = %f\n", answer);
}
执行:
2^10 = 1024.000000
返回顶部 | 《Linux函数调用大全》 | 《Linux命令大全》 | Linux专栏