标签:src 判断 tle ref div blog ted png ons
判断闰年的规则
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();
}
}
}
标签:src 判断 tle ref div blog ted png ons
原文地址:http://www.cnblogs.com/HelloZyjS/p/6015384.html