起个什么标题好呢?
2025-12-08 17:43:08
发布于:广东
0阅读
0回复
0点赞
题解:
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
if(n % 2 == 0){
if(n / 2 % 2 == 0){
cout << "YES";
}else{
cout << "NO";
}
}else{
cout << "NO";
}
}
这里空空如也






有帮助,赞一个