题目描述:
输入一个数,如能拆分成两个偶数之和,则输出YES;
反之,输出NO.
AC代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
int w;
cin >> w;
if(w >= 4 && w % 2 == 0) cout << "YES" << endl;
else cout << "NO" << endl;
}
题目描述:
输入一个数,如能拆分成两个偶数之和,则输出YES;
反之,输出NO.
AC代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
int w;
cin >> w;
if(w >= 4 && w % 2 == 0) cout << "YES" << endl;
else cout << "NO" << endl;
}