2021HBCPC_05.10_Watermelon

英文题面:

One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed w kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem.

Pete and Billy are great fans of even numbers, that’s why they want to divide the watermelon in such a way that each of the two parts weighs even number of kilos, at the same time it is not obligatory that the parts are equal. The boys are extremely tired and want to start their meal as soon as possible, that’s why you should help them and find out, if they can divide the watermelon in the way they want. For sure, each of them should get a part of positive weight.

Input
The first (and the only) input line contains integer number w (1 ≤ w ≤ 100) — the weight of the watermelon bought by the boys.

Output
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.

Examples

input

8

output

YES

我的思路:

循环判断分成的两份是不是都是偶数

我的代码:

#include
using namespace std;
int main()
{int w;cin>>w;bool flag = false;for(int i = 2; i < w; i ++)	//分成地两份都是偶数{if(i%2==0 && (w-i)%2==0){flag = true;}}if(flag)cout<<"YES";elsecout<<"NO";return 0;} 

题解的思路:

直接判断奇偶,如果是偶数才可以被分解成两个偶数(2除外)

题解的代码:

#include
using namespace std;
int main(){int n;cin>>n;if(n%2!=0 || n==2) puts("NO");else puts("YES");
}


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部