提交时间:2025-05-18 14:38:42
运行 ID: 323591
#include<bits/stdc++.h> using namespace std; int main(){ int t,n; scanf("%d",&t); while(t--){ scanf("%d",&n); if(n%4==0)printf("YES\n"); else printf("NO\n"); } return 0; }