The power() function

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The power() function相关的知识,希望对你有一定的参考价值。

#include <stdio.h>

int power(a, n){
	if(0 == n)
		return 1;

	int x = power(a, n/2);
	if(n % 2 == 0)
		return x * x;
	else
		return a * x * x;
}

int main(){
	printf("%d\n", power(32, 3));
	return 0;
}

 

以上是关于The power() function的主要内容,如果未能解决你的问题,请参考以下文章