#region 根据月份来确定每月的最大天数 private int SetDate(string time) { int intYear; int intMonth; int intDay; string year = time.Substring(0,4); string month = time.Substring(4,2); int.TryParse(year, out intYear); int.TryParse(month, out intMonth); if (intMonth == 02) { if (intYear % 400 == 0 || (intYear % 4 == 0 && intYear % 100 != 0))//判断是不是闰年 { intDay = 29; } else { intDay = 28; } } switch (intMonth) { case 04: case 06: case 09: case 11: intDay = 30; break; default: intDay = 31; break; } return intDay; } #endregion
本文URL:http://www.bianceng.cn/Programming/csharp/201410/45588.htm
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索string
, int
, time
, substring
, case
, 天数
, C#判断闰年
最大天数
c站、c语言、cf、ch、c罗,以便于您获取更多的相关知识。
时间: 2024-12-24 20:31:01