没事做就弄了一下,弄出来了不喜勿喷。
for (int years = 1970; years < 2100; years++)
{
//取模,年份能被4整除且不能被100整除也就是取模4等于0时候那么就是瑞年
if (years%4 == 0&&years%100!=0)
Console.WriteLine(years + "闰年");
}
else
Console.WriteLine(years+"丰年");
//压实啦雷
Console.WriteLine("牛逼");