C# 实现计算生辰八字

所属分类: 软件编程 / C#教程 阅读数: 84
收藏 0 赞 0 分享

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#开发word批量转pdf源码分享

已经安装有Office环境,借助一些简单的代码即可实现批量Word转PDF,看下面的实例源码吧
收藏 0 赞 0 分享

c# xml API操作的小例子

这篇文章主要介绍了c# xml API操作的小例子,有需要的朋友可以参考一下
收藏 0 赞 0 分享

c#唯一值渲染实例代码

这篇文章主要介绍了c#唯一值渲染实例代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

淘宝IP地址库采集器c#代码

这篇文章主要介绍了淘宝IP地址库采集器c#代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

C#在后台运行操作(BackgroundWorker用法)示例分享

BackgroundWorker类允许在单独的专用线程上运行操作。如果需要能进行响应的用户界面,而且面临与这类操作相关的长时间延迟,则可以使用BackgroundWorker类方便地解决问题,下面看示例
收藏 0 赞 0 分享

c#文本加密程序代码示例

这是一个加密软件,但只限于文本加密,加了窗口控件的滑动效果,详细看下面的代码
收藏 0 赞 0 分享

c#生成站点地图(SiteMapPath)文件示例程序

这篇文章主要介绍了c#生成站点地图(SiteMapPath)文件的示例,大家参考使用
收藏 0 赞 0 分享

C# 键盘Enter键取代Tab键实现代码

这篇文章主要介绍了C# 键盘Enter键取代Tab键实现代码,有需要的朋友可以参考一下
收藏 0 赞 0 分享

C# WinForm导出Excel方法介绍

在.NET应用中,导出Excel是很常见的需求,导出Excel报表大致有以下三种方式:Office PIA,文件流和NPOI开源库,本文只介绍前两种方式
收藏 0 赞 0 分享

C#串口通信程序实例详解

在.NET平台下创建C#串口通信程序,.NET 2.0提供了串口通信的功能,其命名空间是System.IO.Ports,创建C#串口通信程序的具体实现是如何的呢?让我们开始吧
收藏 0 赞 0 分享
查看更多