Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
132024 张咏灏 [在线测评解答教程] 闰年 C++ Compile Error 0 MS 0 KB 260 2025-10-04 07:55:42

Tests(0/0):


Code:

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


Run Info:

Main.cc: In function 'int main()':
Main.cc:13:9: error: expected ';' before '}' token
         }
         ^