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.
#include <iostream>
using namespace std;
//能拆成偶加偶,两个偶数相加,一定是偶数呀
//一个偶数,一定可以拆成两个偶数相加(除了2)
//这个题在问什么呢
//x/2如果为偶数,就是两个相同偶数相加,为奇数,就是x+1,x-1
bool judge(int n)
{
return n % 2 == 0 && n != 2;
}
int main()
{
int n; cin >> n;
if (judge(n)) cout << "YES";
else cout << "NO";
return 0;
}
故事讲述了一个炎热夏天,Pete和Billy买了一个大西瓜,希望将其分成重量为偶数的两部分。他们对偶数有特别喜好,问题是判断能否按他们的要求分割。程序`judge`函数检查是否能将重量(n)平分为两个偶数。
1万+

被折叠的 条评论
为什么被折叠?



