Run ID:154218
提交时间:2026-05-26 21:46:42
#include<iostream> using namespace std; int main() { int t = 0; int n = 0; cin >> t; while (t--) { cin >> n; int m = n % 4; if (m == 0) { cout << "Yes" << endl; } else{ cout << "No" << endl; } } return 0; }