利用递归的算法求m^n,函数如下
long m_nFun(int m, int n) { if(n == 0) return 1; if(n == 1) return m; return m * m_nFun(m, n-1); }
版权声明:本文为博主原创文章,未经博主允许不得转载。