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

QuickPower快速幂

时间:2017-06-27 16:22:31      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:com   out   nbsp   src   eth   alt   scan   div   分享   

技术分享

#include <iostream>
#include <cstdio>
using namespace std;
int a,b;
long long qp(int a,int b)
{
    int t=1;int y=a;
    while (b)
    {
        if (b&1) t=t*y;//whether obb or not
        y=y*y;
        b=b>>1;
        //cout << a << " " << b << " " << t << " " << y << endl;
    }
    return(t);
}
int main()
{
    scanf("%d %d",&a,&b);
    printf("%lld",qp(a,b));
}

 

QuickPower快速幂

标签:com   out   nbsp   src   eth   alt   scan   div   分享   

原文地址:http://www.cnblogs.com/mczhuang/p/7085590.html

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