判断闰年的规则
可以被4整除,但是不能被100整除,或者被400整除
namespace _06.判断闰年
{
class Program
{
static void Main(string[] args)
{
//年份可以被4整除,但是不能被100整除,或者可以被400整除
Console.WriteLine("请输入想要判断的年份:");
int year = int.Parse(Console.ReadLine()); //接收输入的年份
if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0))
{
Console.WriteLine("{0}年,是闰年.", year);
}
else
{
Console.WriteLine("{0}年,不是闰年.", year);
}
Console.ReadKey();
}
}
}
时间: 2024-10-13 20:36:58