标签:
链接
提示:找规律
#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
const int maxn=1e5+5;
char s[maxn];
int main()
{
cin>>s;
int len=strlen(s);
int sum=(s[len-2]-‘0‘)*10+(s[len-1]-‘0‘);
if(sum % 4 == 0)
puts("4");
else
puts("0");
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/qingshui23/article/details/46786083