码迷,mamicode.com
首页 > 其他好文 > 详细

04.判断闰年

时间:2016-10-31 13:32:01      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:src   判断   tle   ref   div   blog   ted   png   ons   

判断闰年的规则
可以被4整除,但是不能被100整除,或者被400整除
  1. namespace _06.判断闰年
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. //年份可以被4整除,但是不能被100整除,或者可以被400整除
  8. Console.WriteLine("请输入想要判断的年份:");
  9. int year = int.Parse(Console.ReadLine()); //接收输入的年份
  10. if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0))
  11. {
  12. Console.WriteLine("{0}年,是闰年.", year);
  13. }
  14. else
  15. {
  16. Console.WriteLine("{0}年,不是闰年.", year);
  17. }
  18. Console.ReadKey();
  19. }
  20. }
  21. }
技术分享
 




04.判断闰年

标签:src   判断   tle   ref   div   blog   ted   png   ons   

原文地址:http://www.cnblogs.com/HelloZyjS/p/6015384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!