HDU 1021 Fibonacci Again

题解:找规律……

#include <cstdio>
int main(){
   int n;
   while(~scanf("%d",&n)){
      if((n-2)%4!=0)puts("no");
      else puts("yes");
   }return 0;
}
posted @ 2014-08-30 08:02  forever97  阅读(104)  评论(0编辑  收藏  举报