题解(专写水题题解)
2024-08-29 14:58:37
发布于:江苏
3阅读
0回复
0点赞
#include<bits/stdc++.h>
#define ll long long //防抄袭标记
using namespace std;
int n;
int main(){
cin>>n;
if(n<4)
cout<<"NO";
else if(n%2 == 0)
cout<<"YES";
else
cout<<"NO";
return 0;
}
这里空空如也
有帮助,赞一个