8 条题解

  • 0
    @ 2023-11-9 19:35:23
     
    #include<stdio.h>
    int main()
    {
        int year, month, days;
      
            scanf("%d %d", &year, &month);
        switch(month)
        { case 1:
          case 3:
          case 5:
          case 7:
          case 8:
          case 10:
          case 12:days = 31;  break;
          case 4:
          case 6:
          case 9:
          case 11:days = 30; break;
          case 2:
              if (year % 400 == 0 || year % 4 == 0 && year % 100 != 0)
                  days = 29;
              else
                  days = 28; break;
     
     
        }
        printf("%d",days);
        return 0;
    }
    

    信息

    ID
    43
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    递交数
    4495
    已通过
    1222
    上传者