题解
2024-07-14 20:10:09
发布于:上海
0阅读
0回复
0点赞
#include<iostream>
using namespace std;
int n;
bool check(int n){
if (n > 0)
{
if(n == 2)
{
return false;
}//大坑点 , 加个特判
if (n % 2 == 0)
{
return true;
}
else if (n % 2 == 1)
{
return false;
}
}
}
void scan(){
cin >> n;
}
void print(){
if (check(n) == true)
{
cout << "YES";
}
if(check(n) == false)
{
cout << "NO";
}
}
int main(void){
scan();
print();
}
这里空空如也
有帮助,赞一个