Go语言获取指定年份生肖

2023-10-19 09:53:55 浏览数 (1)

Go语言获取指定年份生肖

根据给定年份,返回生肖字符串,公元前使用负值即可。(比如2022年,调用使用GetShengXiao(2022),公元前21年,调用使用GetShengXiao(-21))。

代码语言:javascript复制
// 获取生肖索引
func GetShengXiaoIndex(year int) int {
	// 不存在0年
	if year == 0 {
		panic("err: invalid year")
	}

	// 公元前补1
	if year < 0 {
		year  = 1
	}

	idx := (year - 4) % 12

	if idx < 0 {
		idx  = 12
	}

	return idx
}

// 根据给定年份获取生肖
func GetShengXiao(idx int) string {
	return [12]string{"鼠", "牛", "虎", "兔", "龙", "蛇", "马", "羊", "猴", "鸡", "狗", "猪"}[idx]
}
  • MySQL多层级树形结构表的搜索查询优化
  • 使用WordPress作为小程序后端——APPID有效性前置检查
  • 使用WordPress作为小程序后端——小程序请求前置检查
  • Windows rclone挂载sftp
  • 迁移——从Electron迁移到Eclipse Theia
  • 使用typescript开发chrome扩展
  • use multiple simple queries or a join
  • php: /usr/local/lib/libcurl.so.4: no version information available (required by php)
  • how to improve the rank of search results in google
  • SEO导航

0 人点赞