怎样编写一个递归函数power(),该函数返回一个double类型参数的正整数次靡
double power(float a, int i){
if(i == 1){
return a;
}
return power(a * a, i - 1);
返回a的i次幂