计算次方值
exp,log,log10
#include<math.h>
double pow(double x, double y);
pow()用来计算以x为底的y次方值,即xy值,然后将结果返回。
返回x的y次方计算结果。
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