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

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; }