A hard puzzle 1097

Problem Description

lcy gives a hard puzzle to feng5166,lwg,JGShining and Ignatius: gave a and b,how to know the a^b.everybody objects to this BT problem,so lcy makes the problem easier than begin.
this puzzle describes that: gave a and b,how to know the a^b's the last digit number.But everybody is too lazy to slove this problem,so they remit to you who is wise.
 
Input
There are mutiple test cases. Each test cases consists of two numbers a and b(0<a,b<=2^30)
 
Output
For each test case, you should output the a^b's last digit number.
 
Sample Input
7 66 8 800
 
Sample Output
9 6
 
Author
eddy
 
Recommend
JGShining   |   We have carefully selected several similar problems for you:  1076 1170 1106 1159 1042 
 
Statistic | Submit | Discuss | Note
 1 #include<iostream>
 2 using namespace std;
 3 int main()
 4 {
 5     long long a,b;
 6     long long i,s,c[4];
 7     while(cin>>a>>b)
 8     {
 9         for(i=s=1;i<=4;i++)
10         {
11              s=s*(a%10);
12              s%=10;
13              c[i%4]=s;
14         }
15         cout<<c[b%4]<<endl;
16     }
17     return 0;
18 }
原文地址:https://www.cnblogs.com/wangmengmeng/p/4621897.html