A^B Problem

时间限制: 1000 ms  |  内存限制: 65535 KB
难度: 2
 
描述
Give you two numbers a and b,how to know the a^b's the last digit number.It looks so easy,but everybody is too lazy to slove this problem,so they remit to you who is wise.
 
输入
There are mutiple test cases. Each test cases consists of two numbers a and b(0<=a,b<2^30)
输出
For each test case, you should output the a^b's last digit number.
样例输入
7 66
8 800
样例输出
9
6
提示
There is no such case in which a = 0 && b = 0。
来源


a的尾数为1~9 ,周期为 1,2,4; 所以可进行一下运算  a=a%10; b=b%4+4  (+4是因为要考虑当%4=0时的情况)
 1 #include<stdio.h>
 2 #include<math.h>
 3 int main()
 4 {
 5     int a,b;
 6     while(scanf("%d%d",&a,&b)==2)
 7     {
 8         if(a==0)
 9         {
10             printf("0\n");
11             continue;
12         }
13         if(b==0)
14         {
15             printf("1\n");
16             continue;
17         }
18         a=a%10;
19         b=b%4+4;
20         printf("%d\n",(int)pow(a,b)%10);
21     }
22     return 0;
23 }
View Code

 

转载于:https://www.cnblogs.com/asd1234/p/3406454.html

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐