這裏是我的代碼是計算2提高到16C:X n次冪使用重複的平方不遞歸函數
#include<stdio.h>
#include<math.h>
int main()
{
int i;
long int x=2;
int n=16;
int k=log(n)/log(2);
for(i=1;i<=k;i++)
{
x=x*x;
}
printf("%d",x);
printf("\n%d",k);
}
我要計算這個權力當x即n次方是不對...的權力說N = 19,N = 43等
在你顯示的例子中沒有遞歸。 – devnull
@devnull這顯然也是要求。 – Lundin
你明白它背後的數學嗎?是不可能的。遞歸也與它無關。 – luk32