Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
51306 zhangsicun [在线测评解答教程] 闰年 C++ 编译错误 0 MS 0 KB 228 2024-09-20 19:39:15

Tests(0/0):


#include <stdio.h> int main(){ int t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); if((n%4==0&&n%100!=0)or (n%400==0)){ cout<<"Yes"<<endl; }else{ cout<<"No"<<endl} } return 0; }


测评信息: