HDU 1021 Fibonacci Again

本题为规律题,,,看懂题意再找一下规律就OK了。。。
AC代码如下:

#include<cstdio>
#include<iostream>
using namespace std;

int main()
{
    int n;
    while(cin>>n)
    {
        if(n%4==2)
        {
            cout<<"yes"<<endl;
        }
        else cout<<"no"<<endl;
    }
    return 0;
}

你可能感兴趣的:(HDU)