平时我们日常生活、工作中经常会说一年有365天,其实这种说法是不准确的,比如,闰年的天数会比普通年份的天数多一天,闰年的出现主要是为了弥补人为历法规定造成的每一年的天数与地球实际公转周期差而设定的,补上时间差后的年份我们称之为闰年,那么,我们该如何判断某年是否闰年呢?下面济南云服务器小编news.hcsw666.com/就来为大家分享一种获取某年天数的方法,有兴趣的朋友可以过来参考一下
关键代码:
static void Main(string[] args) { int year; Console.WriteLine("请输入需要获取天数的年份:"); year = int.Parse(Console.ReadLine()); Console.WriteLine("{0}年有{1}天", year, GetDaysInYear(year)); Console.ReadKey(); } public static int GetDaysInYear(int year) { if (DateTime.IsLeapYear(year)) { return 366; } else { return 365; } }
评论