C是提供这样的函数的.函数原型是:double pow(double x,double y);表示x^y;你可以这样表示(long)pow(10,5);
头文件要加上#include<cmath.h> 调用函数pow(a,n);
好想是math.h 吧
函数头是用#include <math.h>
调用函数pow(a,n);