码迷,mamicode.com
首页 > 编程语言 > 详细

hdu1021(C++)

时间:2015-03-01 16:56:13      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

打表找规律,发现是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;
}

hdu1021(C++)

标签:

原文地址:http://www.cnblogs.com/td15980891505/p/4307159.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!