本文主要是介绍Arpa’s hard exam and Mehrdad’s naive cheat,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
找规律
There exists an island called Arpa’s land, some beautiful girls live there, as ugly ones do.
Mehrdad wants to become minister of Arpa’s land. Arpa has prepared an exam. Exam has only one question, given n, print the last digit of 1378n.
Mehrdad has become quite confused and wants you to help him. Please help, although it's a naive cheat.
The single line of input contains one integer n (0 ≤ n ≤ 109).
Print single integer — the last digit of 1378n.
1
8
2
4
In the first example, last digit of 13781 = 1378 is 8.
In the second example, last digit of 13782 = 1378·1378 = 1898884 is 4.
#include<stdio.h>
int main()
{int n;int an[10]={6,8,4,2};scanf("%d",&n);if(n)printf("%d",an[n%4]);elseprintf("1");return 0;
}
这篇关于Arpa’s hard exam and Mehrdad’s naive cheat的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!