Run ID:98259

提交时间:2024-11-17 17:01:58

#include <iostream> #include <cstdio> using namespace std; int main() { int t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); if(n%4 == 0){ cout << "yes" ; } else{ cout << "no " ; } } return 0; }