提交时间:2023-10-19 15:13:00

运行 ID: 28678

#include <iostream> using namespace std; int main() { int t, year; cin >> t; while (t > 0) { cin >> year; if (year % 4) cout << "No" << endl; else cout << "Yes" << endl; t--; } }