承接国内外服务器租用托管、定制开发、网站代运营、网站seo优化托管接单、网站代更新,新老站点皆可!!咨询QQ:3787320601
当前位置:首页  >  互联网圈  >  python怎么实现幂函数

python怎么实现幂函数

管理员 2023-03-27 09:52:34 互联网圈 38 ℃ 0 评论 701字 收藏

python怎样实现幂函数

python怎么实现幂函数

在python中利用递归实现一个幂函数,具体方法以下:

double PowerWithExponentUnsigned(double base, unsigned int exponentUnsigned)

{

// 最小子问题

if(exponentUnsigned == 0)

return 1;

double result = PowerWithExponentUnsigned(base,exponentUnsigned / 2);

result = result * result;

if(exponentUnsigned % 2 == 1)

{

result *= base;

}

return result;

}

文章来源:丸子建站

文章标题:python怎么实现幂函数

https://www.wanzijz.com/view/4441.html

TAG: python 幂函数

相关文章

Related articles

X

截屏,微信识别二维码

微信号:weimawl

(点击微信号复制,添加好友)

打开微信