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

nod_1004 n^n的末位数字(二分快速幂)

时间:2015-04-09 15:04:28      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

题意:

给出一个整数N,输出N^N(N的N次方)的十进制表示的末位数字。
Input
一个数N(1 <= N <= 10^9)
OutPut
输出N^N的末位数字

思路:

EASY,,,,,,

 

代码:

int calc(int t,int n){
    if(n==0) ret 1;
    if(n==1) ret t;
    int s=calc(t,n/2);
    s=s*s%10;
    if(n&1){
        s=s*t%10;
    }
    ret s;
}
int main(){
    int n;
    
    cin>>n;
    int t=n%10;
    print("%d\n",calc(t,n));
    
    ret 0;
}

 

nod_1004 n^n的末位数字(二分快速幂)

标签:

原文地址:http://www.cnblogs.com/fish7/p/4409449.html

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