zoj 2060 Fibonacci Again

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

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

posted @ 2015-01-27 21:15  xryz  阅读(121)  评论(0)    收藏  举报