HDU1021 Fibonacci Again

题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1021

简单题,就是找找规律,就可以发现从2开始,每次递增4的值满足被3整除的要求


#include
< iostream >
using   namespace  std;

void  doProcess( int  n)
{//从2开始,每次递增
    if (n%4==2)
    
{
        cout
<<"yes"<<endl;
    }

    
else
        cout
<<"no"<<endl;
}

int  main()
{
    
long n;
    
while (cin>>n)
    
{
        doProcess(n);
    }

    
return 0;
}

你可能感兴趣的:(fibonacci)