Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
40048 杨中琦 判断某年某月天数 C++ 通过 100 0 MS 256 KB 303 2022-05-24 19:36:44

Tests(9/9):


#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; scanf("%d %d",&a,&b); if((a%100==0&&a%400==0||a%100!=0&&a%4==0)&&b==2) c=29; if(a%4!=0&&b==2) c=28; if(b==1||b==3||b==5||b==7||b==8||b==10||b==12) c=31; if(b==4||b==6||b==9||b==11) c=30; printf("%d",c); return 0; }


测评信息: