Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132616 张咏灏 [在线测评解答教程] 闰年 C++ Wrong Answer 2 MS 268 KB 261 2025-10-11 18:46:10

Tests(4/11):


Code:

#include<iostream> using namespace std; int main(){ int a,b; cin>>a; for(int i=0;i<a;i++){ cin>>b; if(b%4==0){ cout<<"Yes"<<endl; }else{ cout<<"No"<<endl; } } return 0; }


Run Info:

------Input------
8 1277 3179 3789 1585 1404 2652 1755 1400
------Answer-----
No No No No Yes Yes No No
------Your output-----
No No No No Yes Yes No Yes