题解 | #小美的因子查询#
小美的因子查询
https://www.nowcoder.com/practice/1870e68256794c6aa727c8bb71fd9737
#include <iostream>
using namespace std;
int main() {
int t;
cin>>t;
while(t--)
{
int x;
cin>>x;
if(x&1) cout<<"NO"<<endl;
else cout<<"YES"<<endl;
}
return 0;
}
// 64 位输出请用 printf("%lld")

