Run ID:8410
提交时间:2025-11-30 13:31:46
#include<iostream> using namespace std; int main(){ int t; cin>>t; int n=0; while(t--){ cin >> n; if(n%4==0 && n%100!=0 || n%400==0){ cout<<"yes"<<endl; }else{ cout<<"no"<<endl; } } return 0; }