标签:str can clu problem return cpp 示例 https using
51Nod - 1004 n^n的末位数字
一个数N(1 <= N <= 10^9)
输出N^N的末位数字
13
3
题解:
末尾数字,所以在快速迭代幂的时候,只需要考虑末尾数字即可。
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> using namespace std; int main(){ int n, cnt, ans; while(scanf("%d", &n) != EOF){ cnt = n; ans = 1; n = n % 10; while(cnt){ if(cnt%2 == 1){ ans = (ans * n) % 10; } n = n * n % 10; cnt = cnt / 2; } printf("%d\n", ans%10 ); } return 0; }
标签:str can clu problem return cpp 示例 https using
原文地址:http://www.cnblogs.com/zhang-yd/p/6818859.html