hdu1097

Posted 王坤1993

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu1097相关的知识,希望对你有一定的参考价值。

#include <stdio.h>

int calc(int a, int b)
{
if(a==0 || a==1 || a==5 || a==6) return a;
if(a==2)
{
if(b%4==1) return 2;
if(b%4==2) return 4;
if(b%4==3) return 8;
if(b%4==0) return 6;
}
if(a==3)
{
if(b%4==1) return 3;
if(b%4==2) return 9;
if(b%4==3) return 7;
if(b%4==0) return 1;
}
if(a==4)
{
if(b%2==1) return 4;
if(b%2==0) return 6;
}
if(a==7)
{
if(b%4==1) return 7;
if(b%4==2) return 9;
if(b%4==3) return 3;
if(b%4==0) return 1;
}
if(a==8)
{
if(b%4==1) return 8;
if(b%4==2) return 4;
if(b%4==3) return 2;
if(b%4==0) return 6;
}
if(a==9)
{
if(b%2==1) return 9;
if(b%2==0) return 1;
}
}

int main()
{
int a,b;
while(scanf("%d%d",&a,&b)!=EOF)
{
printf("%d\n",calc(a%10,b));
}
return 0;
}

以上是关于hdu1097的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1097 快速幂

hdu1097

HDU 1097 A hard puzzle(快速幂)

Hdu 1097 A hard puzzle

人生第一个快速幂的题(HDU - 1097--A hard puzzle )

hdu题目分类