C# 实现计算生辰八字

 更新时间:2015年03月23日 16:45:04   投稿:hebedich  
生辰八字,简称八字,是指一个人出生时的干支历日期;年月日时共四柱干支,每柱两字,合共八个字,故称。生辰八字在汉族民俗信仰中占有重要地位,古代汉族星相家据此推算人的命运的好坏。本文我们就来使用C#来实现计算生辰八字。

Form1.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
 
namespace BrithdayEigth
{
  public partial class Form1 : Form
  {
    public Form1()
    {
      InitializeComponent();
    }
    public static string[] date = {
     "甲子", "乙丑", "丙寅", "丁卯", "戊辰", "己巳", "庚午", "辛未", "壬申", "癸酉",
     "甲戊", "乙亥", "丙子", "丁丑", "戊寅", "乙卯", "庚辰", "辛巳", "壬午", "癸未",     "甲申", "乙酉", "丙戌", "丁亥", "戊子", "己丑", "庚寅", "辛卯", "壬辰", "癸巳",     "甲午", "乙未", "丙申", "丁酉", "戊戌", "己亥", "庚子", "辛丑", "壬寅", "癸卯",     "甲辰", "乙巳", "丙午", "丁未", "戊申", "乙酉", "庚戌", "辛亥", "壬子", "癸丑",     "甲寅", "乙卯", "丙辰", "丁巳", "戊午", "己未", "庚申", "辛酉", "壬戌", "癸亥"
                   
                   };
 
    public int yearZi=0;
    private void btnOk_Click(object sender, EventArgs e)
    {
      DateTime dt=Day.Value;
      int year=dt.Year;
      int moon = dt.Month;
      int date = dt.DayOfYear;
       
      MessageBox.Show("Test:"+(year%60-3)+":"+moon+":"+date);
      //调用获得年生辰的方法
      String yearZi = yearZ(year);
      string moonZi = moonZ(moon,year);
      string dayZi = dayei(year, date);
      int hour = int.Parse(hourDate.Text);
     string hourZi= Hours(hour, date, year);
      txtBrithday.Text = yearZi+" "+moonZi+" "+dayZi+" "+hourZi;
    }
 
    private void Form1_Load(object sender, EventArgs e)
    {
       
    }
    //获得年生辰的方法
    public string yearZ(int y) {
      int yearZie = yearNum(y);
      return date[yearZie-1];
    }
    public string moonZ(int m,int year) {
 
      int yearZie = yearNum(year);
      if (yearZie >= 12)
      {
        if (yearZie % 10 == 6 || yearZie % 10 == 1)
        {
          return date[2+m-1];
        }
        else if (yearZie % 10 == 2 || yearZie % 10 == 7) {
          return date[14 + m - 1];
        }
        else if (yearZie % 10 == 3 || yearZie % 10 == 8)
        {
          return date[26 + m - 1];
        }
        else if (yearZi % 10 == 4 || yearZi % 10 == 9)
        {
          return date[38 + m - 1];
        }
        else if (yearZie % 10 == 5 || yearZie % 10 == 0)
        {
          return date[50 + m - 1 > 60 ? (m - 11) : 49 + m];
        }
      }
      else
      {
        if (yearZie == 6 || yearZie == 1)
        {
          return date[2 + m - 1];
        }
        else if (yearZie == 2 || yearZie == 7)
        {
          return date[14 + m - 1];
        }
        else if (yearZie == 3 || yearZie == 8)
        {
          return date[26 + m - 1];
        }
        else if (yearZi == 4 || yearZi == 9)
        {
          return date[38 + m - 1];
        }
        else if (yearZie== 5 || yearZie == 10)
        {
          return date[50 + m - 1>60?(m-11):49+m];
        }
      }
      return date[1];
    }
 
    public string dayei(int year,int day) {
 
      int yearZie = yearNum(year);
      return date[(yearZie + day)%60-1];
    }
    public string Hours(int hour,int day,int year) {
      int yearZie=yearNum(year);
      string strH = "";
      int datey=(yearZie+day)%60-1;
      int dateZi=datey%10;
      if (dateZi == 1 || dateZi == 5)
      {
        strH += "甲";
      }
      else if (dateZi == 2 || dateZi == 6)
      {
        strH += "丙";
      }
      else if (dateZi == 3 || dateZi == 7)
      {
        strH += "戊";
      }
      else if (dateZi == 4 || dateZi == 8)
      {
        strH += "庚";
      }
      else if (dateZi == 5 || dateZi == 0)
      {
        strH += "壬";
      }
 
 
      if (hour > 0 && hour <= 1) 
      { 
         strH+="子";
      }
      else if (hour > 1 && hour <= 3)
      {
        strH += "丑";
      }
      else if (hour > 3 && hour <= 5)
      {
        strH += "寅";
      }
      else if (hour > 5 && hour <= 7)
      {
        strH += "卯";
      }
      else if (hour > 7 && hour <= 9)
      {
        strH += "辰";
      }
      else if (hour > 9 && hour <= 11)
      {
        strH += "巳";
      }
      else if (hour > 11 && hour <= 13)
      {
        strH += "午";
      }
      else if (hour > 13 && hour <= 15)
      {
        strH += "未";
      }
      else if (hour > 15 && hour <= 17)
      {
        strH += "申";
      }
      else if (hour > 17 && hour <= 19)
      {
        strH += "子";
      }
      else if (hour > 19 && hour <= 21)
      {
        strH += "酉";
      }
      else if (hour > 21 && hour <= 23)
      {
        strH += "戊";
      }
      else if (hour > 0 && hour <= 1) 
      {
        strH += "亥";
      }
      return strH;
    }
 
    public int yearNum(int year) {
      int yearZie = year % 60 - 3;
 
      if (yearZie <= 0)
      {
        yearZie += 60;
      }
      return yearZie;
 
    }
  }
}

以上就是本文的全部内容了,希望大家能够喜欢。

相关文章

  • 深入理解C# 委托与事件

    深入理解C# 委托与事件

    本文主要介绍了深入理解C# 委托与事件,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2008-05-05
  • C#实现在网页中根据url截图并输出到网页的方法

    C#实现在网页中根据url截图并输出到网页的方法

    这篇文章主要介绍了C#实现在网页中根据url截图并输出到网页的方法,涉及C#网页浏览器及图片操作的相关技巧,需要的朋友可以参考下
    2016-01-01
  • 实例详解C#实现http不同方法的请求

    实例详解C#实现http不同方法的请求

    本篇文章给大家分享了C#实现http不同方法的请求的相关知识点以及实例代码,有需要的朋友参考下。
    2018-07-07
  • C#索引属性用法实例分析

    C#索引属性用法实例分析

    这篇文章主要介绍了C#索引属性用法,实例分析了C#声明索引属性的相关技巧,需要的朋友可以参考下
    2015-06-06
  • C#正则表达式与HashTable详解

    C#正则表达式与HashTable详解

    这篇文章主要介绍了C#正则表达式与HashTable详解,文章围绕主题展开详细的内容介绍,具有一定的参考价值,需要的小伙伴可以参考一下
    2022-07-07
  • c#中token的使用方法实例

    c#中token的使用方法实例

    本文主要介绍了c#中token的使用方法实例,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-02-02
  • C#中Request.Cookies 和 Response.Cookies 的区别分析

    C#中Request.Cookies 和 Response.Cookies 的区别分析

    本文通过实例代码向我们展示了C#中Request.Cookies 和 Response.Cookies 的区别,文章浅显易懂,这里推荐给大家。
    2014-11-11
  • C#多线程之Thread中Thread.Join()函数用法分析

    C#多线程之Thread中Thread.Join()函数用法分析

    这篇文章主要介绍了C#多线程之Thread中Thread.Join()函数用法,实例分析了Thread.Join()方法的原理与使用技巧,非常具有实用价值,需要的朋友可以参考下
    2015-04-04
  • unity实现简单抽奖系统

    unity实现简单抽奖系统

    这篇文章主要为大家详细介绍了unity实现简单抽奖系统,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-02-02
  • C#使用反射机制实现延迟绑定

    C#使用反射机制实现延迟绑定

    这篇文章介绍了C#使用反射实现延迟绑定的方法,文中通过示例代码介绍的非常详细。对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2022-07-07

最新评论