zoukankan      html  css  js  c++  java
  • VS.NET获取某年某月的天数

    public static int getDaysOfMonth(int theYear, int theMonth)//獲取某年某月的天數
            {
                int days = 0;
                switch (theMonth)
                {
                    case 1:
                        days = 31;
                        break;
                    case 2:
                        if (DateTime.IsLeapYear(theYear))
                        {
                            //闰年二月为29天
                            days = 29;
                        }
                        else
                        {
                            //不是闰年,二月为28天
                            days = 28;
                        }
                        break;
                    case 3:
                        days = 31;
                        break;
                    case 4:
                        days = 30;
                        break;
                    case 5:
                        days = 31;
                        break;
                    case 6:
                        days = 30;
                        break;
                    case 7:
                        days = 31;
                        break;
                    case 8:
                        days = 31;
                        break;
                    case 9:
                        days = 30;
                        break;
                    case 10:
                        days = 31;
                        break;
                    case 11:
                        days = 30;
                        break;
                    case 12:
                        days = 31;
                        break;
                }

                return days;
            }

  • 相关阅读:
    python 面向对象编程
    用python写个快排
    函数(参数,作用域,返回函数,匿名函数,偏函数)
    SpringBoot学习4:springboot整合listener
    SpringBoot学习1:创建第一个SpringBoot项目
    SpringBoot学习2:springboot整合servlet
    SpringBoot学习3:springboot整合filter
    使用FreeMarker导出word文档(支持导出图片)
    MySQL中实现递归查询
    MySQL中find_in_set()函数的使用
  • 原文地址:https://www.cnblogs.com/vic_lu/p/1810048.html
Copyright © 2011-2022 走看看