hdu1021(C++)

打表找规律,发现是n%4==2就是yes,否则是no

#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;
}

posted @ 2015-03-01 15:41  曹孟德  阅读(179)  评论(0编辑  收藏  举报