poj1061
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj1061相关的知识,希望对你有一定的参考价值。
一个快速幂取模的题,用快速幂就可以解决了
#include <iostream> #include <cstdio> using namespace std; int mod_exp(int a, int b, int c) //快速幂取余a^b%c { int res, t; res = 1 % c; //a是底数 b是指数; t = a % c; while (b) { if (b & 1) { res = res * t % c; } t = t * t % c; b >>= 1; } return res; } int main() { int T; cin >> T; while (T--) { int n; cin >> n; cout << mod_exp(n, n, 10) << endl; } return 0; }
以上是关于poj1061的主要内容,如果未能解决你的问题,请参考以下文章