Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
8446 xieyuchun [在线测评解答教程] 闰年 C++ Pending 0 MS 0 KB 207 2026-02-21 21:10:38

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int xh,shu=0; string da; cin>>xh; while(xh--){ cin>>shu; if(shu%4==0) da=da+"Yes"+"\n"; else da=da+"No"+"\n"; } cout<<da; }