天干地支算法

/**
* <url>http://en.wikipedia.org/wiki/Sexagenary_cycle</url>
*/
public class Sexagenary {
/**
* 输入干支,输出对应数值。
*/
public static int getValue(Stems stems, Branches branches) {
int s = stems.ordinal() + 1;
int b = branches.ordinal() + 1;

int value = (6 * s - 5 * b + 60) % 60;
return value;
}

/**
* 输入数值,输出对应干支(String)
*/
public static String getStemsBranches(int num) {
if (num < 1 || num > 60) {
throw new IllegalArgumentException("Error input, num:" + num);
}

int s = ((num % 10) == 0) ? 10 : (num % 10);
int b = ((num % 12) == 0) ? 12 : (num % 12);

Stems stems = Stems.values()[s - 1];
Branches branches = Branches.values()[b - 1];

return "" + stems + branches;
}


public static void main(String[] args) {
System.out.println(Stems.甲);
System.out.println(Sexagenary.getStemsBranches(1)); // 甲子
System.out.println(Sexagenary.getStemsBranches(53)); // 丙辰
System.out.println("" + Sexagenary.getValue(Stems.甲, Branches.子)); // 1
System.out.println("" + Sexagenary.getValue(Stems.丙, Branches.辰)); // 53
System.out.println("" + Sexagenary.getValue(Stems.戊, Branches.午)); // 55
}
}

enum Stems {
甲, 乙, 丙, 丁, 戊, 己, 庚, 辛, 壬, 癸;
}

enum Branches {
子, 丑, 寅, 卯, 辰, 巳, 午, 未, 申, 酉, 戌, 亥;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值