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

C#判断闰年函数及举例

时间:2014-09-15 13:01:28      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:blog   os   ar   for   2014   log   on   c   line   

//语法:
public static bool IsLeapYear(int year)
//用法举例:
using System;

public class IsLeapYear
{
   public static void Main()
   {
      for (int year = 1994; year <= 2014; year++)
      {
         if (DateTime.IsLeapYear(year))
         {
            Console.WriteLine("{0} is a leap year.", year);
            DateTime leapDay = new DateTime(year, 2, 29);
            DateTime nextYear = leapDay.AddYears(1);
            Console.WriteLine("   One year from {0} is {1}.", leapDay.ToString("d"),nextYear.ToString("d"));
         }         
      }
   }
}

C#判断闰年函数及举例

标签:blog   os   ar   for   2014   log   on   c   line   

原文地址:http://blog.csdn.net/lucky51222/article/details/39290269

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