zoj 2060 Fibonacci Again

#include "stdio.h"
int main()
{
	int n;
	while(~scanf("%d",&n))
	{
		if((n-2)%4==0) printf("yes
");
		else printf("no
");
	}
	return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。http://xiang578.top/

原文地址:https://www.cnblogs.com/xryz/p/4848121.html