码迷,mamicode.com
首页 > 其他好文 > 详细

hdu1097

时间:2017-01-25 01:03:15      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:can   stdio.h   hdu1097   while   printf   main   turn   cal   scan   

#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

标签:can   stdio.h   hdu1097   while   printf   main   turn   cal   scan   

原文地址:http://www.cnblogs.com/wangkun1993/p/6348080.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!