Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143655 王峻熙 [在线测评解答教程] 闰年 C++ Compile Error 0 MS 0 KB 351 2026-01-17 14:27:03

Tests(0/0):


Code:

#include<iostream> using namespace std; int main(){ int t; cin>>t; int n[1000]={}; for(int i=0;i<t;i++){ cin>>n[i]; } for(int i=0;i<t;i++){ if(n[i]%4==0||n[i]%100!=0||n[i]%400==0){ cout<<Yes<<endl; } else{ cout<<No<<endl; } } return 0; }


Run Info:

Main.cc: In function 'int main()':
Main.cc:12:19: error: 'Yes' was not declared in this scope
             cout<