标签:bool write amp 判断 一个 lin pre int adk
{ //润年条件,年份能够被400整除,或者年份能被4整除但不能被100整除
bool b = (year % 400 == 0) || (year % 4 == 0 && year % 100 != 0);
//输出结果
Console.WriteLine(b);
Console.ReadKey();
}
标签:bool write amp 判断 一个 lin pre int adk
原文地址:https://blog.51cto.com/12679593/2380776