getDayChongShengXiao method

String getDayChongShengXiao()

Implementation

String getDayChongShengXiao() {
  String chong = getDayChong();
  for (int i = 0, j = LunarUtil.ZHI.length; i < j; i++) {
    if (LunarUtil.ZHI[i] == chong) {
      return LunarUtil.SHENGXIAO[i];
    }
  }
  return '';
}