码迷,mamicode.com
首页 > Web开发 > 详细

hdu 1061 Rightmost Digit

时间:2014-08-20 18:02:42      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:os   io   amp   htm   sp   c   return   algorithm   

//模幂运算,而且求个位,一直求10的模
# include <stdio.h>
# include <algorithm>
# include <math.h>
using namespace std;
__int64 Pow(__int64 m,__int64 n)
{
    __int64 p=1;
    while(n)
    {
        if(n%2)
            p=p*m%10;
        n/=2;
        m=m*m%10;
    }
    return p%10;
}
int main()
{
    int t;
    __int64 n,m;
    while(~scanf("%d",&t))
    {
        while(t--)
        {
            scanf("%I64d",&n);
            m=n;
            m%=10;//求个位的n次取模
            if(m==0)
                printf("0\n");
            else
                printf("%I64d\n",Pow(m,n));
        }
    }
    return 0;
}

hdu 1061 Rightmost Digit,布布扣,bubuko.com

hdu 1061 Rightmost Digit

标签:os   io   amp   htm   sp   c   return   algorithm   

原文地址:http://blog.csdn.net/lp_opai/article/details/38708241

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