码迷,mamicode.com
首页 > 其他好文 > 详细

快速幂

时间:2017-04-21 20:01:07      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:can   ret   std   int   turn   efi   fine   return   while   

#include<stdio.h>
#define M 1000000007
int fp(int a,int b){
long long ret=1,pow=a;//ret:返回值;pow:基底
while(b!=0){
if(b&1) ret=(ret*pow)%M;
pow=(pow*pow)%M;
b/=2;//相当于b>>1
}
return (int)ret;
}
int main(){
int a,b;
scanf("%d%d",&a,&b);
printf("%d\n",fp(a,b));
}

快速幂

标签:can   ret   std   int   turn   efi   fine   return   while   

原文地址:http://www.cnblogs.com/joeylee97/p/6128973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!