这题我用三目输出时有个问题
#include<bits/stdc++.h> using namespace std; int a; int main() { cin>>a; cout<<(a%2==0&&a!=2)?"YES":"NO"; return 0; }
这份代码输入样例时输出1是为什么?