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

HW5.16

时间:2016-08-21 12:16:39      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

 1 public class Solution
 2 {
 3     public static void main(String[] args)
 4     {
 5         for(int i = 2000; i <= 2010; i++)
 6             System.out.printf("%d\t%d\n", i, numberOfDaysInAYear(i));
 7     }
 8 
 9     public static int numberOfDaysInAYear(int year)
10     {
11         if((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)
12             return 366;
13         else
14             return 365;
15     }
16 }

 

HW5.16

标签:

原文地址:http://www.cnblogs.com/wood-python/p/5792367.html

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