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的主要内容,如果未能解决你的问题,请参考以下文章

未触发opengl片段着色器条件语句

[异常解决] Keil安装好nRF51822开发环境,运行DEMO报错:Error:“GPIOTE_CONFIG_NUM_OF_LOW_POWER_ENVENTS” is undefined(代码片段

Updating power_state in the DB to match the hypervisor

环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段

翻译——The Power of Python and SQL Server 2017

HDU 4461:The Power of Xiangqi(水题)