码迷,mamicode.com
首页 > 其他好文 > 详细

1118. 一月有多少天

时间:2019-07-14 09:41:23      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:http   ==   amp   ret   int   img   技术   判断   class   

技术图片
判断是否为闰年

class Solution {
     public int numberOfDays(int Y, int M) {
        int arr[] = {0,31,28,31,30,31,30,31,31,30,31,30,31};
        if(is_Leap(Y)&&M==2)
        return 29;
        else return arr[M];
    }
    public static boolean is_Leap(int i) {
        if(i%4==0&&i%100!=0|| i%400==0) {
            return true;
        }
        return false;
    }
}

1118. 一月有多少天

标签:http   ==   amp   ret   int   img   技术   判断   class   

原文地址:https://www.cnblogs.com/cznczai/p/11183038.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!