首页 > 其他 > 详细

Codeforces 4A Watermelon

时间:2018-06-17 12:05:56      阅读:227      评论:0      收藏:0      [点我收藏+]

技术分享图片

题目链接

http://codeforces.com/problemset/problem/4/A

#include<iostream>
using namespace std;

int main()
{
    int num;
    cin>>num;
    if(num%2==0&&num!=2)
    {
        cout<<"YES";
    }else
    {
        cout<<"NO";
    }


    return 0;
}

 

Codeforces 4A Watermelon

原文:https://www.cnblogs.com/CMlhc/p/9192504.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!