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

判断闰年(go语言版本)

时间:2014-05-26 15:12:52      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:style   c   class   blog   code   java   

bubuko.com,布布扣
 1 import "strconv"
 2 
 3 func IsLeapYear(y string) bool { //y == 2000, 2004
 4     //判断是否为闰年
 5     year, _ := strconv.Atoi(y)
 6     if year%4 == 0 && year%100 != 0 || year%400 == 0 {
 7         return true
 8     }
 9 
10     return false
11 }
bubuko.com,布布扣

 

判断闰年(go语言版本),布布扣,bubuko.com

判断闰年(go语言版本)

标签:style   c   class   blog   code   java   

原文地址:http://www.cnblogs.com/sn-dnv-aps/p/3746361.html

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