0
点赞
收藏
分享

微信扫一扫

C# 判断是不是闰年

钟罗敏 2022-07-27 阅读 119


if (intYear % 400 == 0 || (intYear % 4 == 0 && intYear % 100 != 0))



举报

相关推荐

0 条评论