中國農曆類

2021-09-22 08:28:21 字數 2416 閱讀 9693

/// /// 中國農曆

///

public static class chinadate

;private static int jqdata = ;

static chinadate()

/// /// 獲取農曆

///

///

///

public static string getchinadate(datetime dt)

到之間!", china.minsupporteddatetime.tostring("yyyy-mm-dd"), china.maxsupporteddatetime.tostring("yyyy-mm-dd")));

}string str = string.format(" ", getyear(dt), getmonth(dt), getday(dt));

string strjq = getsolarterm(dt);

if (strjq != "")

string strholiday = getholiday(dt);

if (strholiday != "")

string strchinaholiday = getchinaholiday(dt);

if (strchinaholiday != "")

return str;

}/// /// 獲取農曆年份

///

///

///

public static string getyear(datetime dt)

]", year, yearsx[ydz], yeartg[ytg], yeardz[ydz]);

return str;

}/// /// 獲取農曆生肖

///

///

///

public static string getsx(datetime dt)

", year, yearsx[ydz]);

return str;

}/// /// 獲取農曆月份

///

///

///

public static string getmonth(datetime dt)

string sztext = "正二三四五六七**十";

string strmonth = isleapmonth ? "閏" : "";

if (imonth <= 10)

else if (imonth == 11)

else

return strmonth + "月";

}/// /// 獲取農曆日期

///

///

///

public static string getday(datetime dt)

else if (iday == 30)

else

return strday;

}/// /// 獲取節氣

///

///

///

public static string getsolarterm(datetime dt)

}return strreturn;

}/// /// 獲取公曆節日

///

///

///

public static string getholiday(datetime dt)

return strreturn;

}/// /// 獲取農曆節日

///

///

///

public static string getchinaholiday(datetime dt)

else if (leapmonth != imonth)

object n = nholiday[imonth.tostring("00") + iday.tostring("00")];

if (n != null)

else}}

return strreturn;

}/* 引用方法

* datetime dt = datetime.now ;

chinadate.getchinadate(dt) 獲取農曆日期

chinadate.getyear(dt) 獲取農曆年份(包含天干地支和生肖資訊)

chinadate.getmonth(dt) 獲取農曆月份

chinadate.getday(dt) 獲取農曆日期

chinadate.getsolarterm(dt) 獲取節氣

chinadate.getholiday(dt) 獲取公曆節日

chinadate.getchinaholiday(dt) 獲取農曆節日*/

}

python農曆 用python計算農曆 陰曆假日

這裡有日曆堅果嗎?我一直在尋找有關如何計算公曆中不規則發生的當前一年的假期的資訊。這通常是因為這個節日是基於古老的農曆。在 但我沒能完成。如果有人有乙個現代語言的示例 來描述他們的計算,我將非常感激。我更喜歡python或c 語言之一。在 我目前的進展 完成 光明節和其他希伯來日曆假日可以使用pyt...

帶農曆的中國萬年曆製作

最近乙個小專案需要製作帶農曆的中國萬年曆,苦悶了幾天,終於大功告成,可以儲存為,可以更換風格等,全用c 和 gdi 完成,為提高效率,全自行繪製,沒有使用label等控制項。上面的 graphics g graphics.fromimage tmpbitmap qqaamonthcalendar m...

第乙個GTK程式 中國農曆 之二

在完成 之後,我們開始嘗試準備編譯環境 glade 2在生成 時,為我們考慮好了,自動生成了configure.in及autogen.sh。依道理來說,只要稍做修改,我們就可以編譯 鏈結再執行了。但由於glade 2早在2007年就停止開發了,所以還得我們自己來動手。這裡面要用到的就是一系列工具 a...