C#判断闰年

编写一个C#控制台程序,进行闰年的判断。

//本实验为河南大学软件学院C#第五次作业
//判断闰年
//作者:杨清源
//完成时间;2022/9/30
namespace LeapYear
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入要判断的年份:");
            int year = int.Parse(Console.ReadLine());
            if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) //闰年判断标准:被4整除,且不被100整除,或者被400整除。
            {
                Console.WriteLine("{0}年是闰年", year);

            }
            else
                Console.WriteLine("{0}年不是闰年", year);
            Console.ReadKey();
        }
    }
}

你可能感兴趣的:(C#,c#,开发语言)