C 陽曆轉陰曆

2022-06-24 14:36:16 字數 1010 閱讀 4653

需求:需要根據當前日期,獲取陰曆日期。原文傳送門

**如下圖所示:

宣告農曆日月,**如下所示:

/// /// 農曆日月

///

private static string months = ;

private static string days1 = ;

private static string days = ;

返回農曆月,**如下所示:

/// /// 返回農曆月

///

/// 月份

///

public static string getlunisolarmonth(int month)

throw new argumentoutofrangeexception("無效的月份!");

}

返回農曆日,**如下所示:

/// /// 返回農曆日

///

///

///

public static string getlunisolarday(int day)

else

}throw new argumentoutofrangeexception("無效的日!");

}

最後,傳入日期。**如下所示:

/// /// 陽曆轉陰曆

///

///

public string getydatabydata(datetime m_ydata)

else if (lmonth > leapmonth)

}lunardate= string.concat(isleap ? "閏" : string.empty, getlunisolarmonth(lmonth), "月", getlunisolarday(lday));

return lunardate;

}

轉換 php PHP陰曆陽曆轉換

功能 公曆 農曆轉換 轉換成中文日期格式 計算農曆相隔天數 根據陰曆年獲取生肖 獲取陰曆月份的天數 獲取農曆每年的天數 獲取閏月 計算陰曆日期與正月初一相隔的天數 計算2個公曆 陽曆 日期之間的天數 根據距離正月初一的天數計算陰曆日期 獲取天干地支紀年等,php日期操作類 lunar.class.p...

C 陽曆轉農曆

你妹的sb 原文 c asp.net 公曆轉農曆的簡單方法 dot net 平台,對全球化的支援做的非常好,不得不稱讚乙個 通常,將公曆轉為農曆,是個非常煩的事情,需要整理閏年 閏月等的對照表。在.net平台上,有了國際化的支援,這些東西,都已經提供了 我們需要做的,只是利用一下而已。話不多說,直接...

php 陽曆轉農曆優化版

網上轉換方法很多例子錯誤。測試例子2 輸入農曆1990.11.初十,丑時,公曆應該為1990年12月26日 2時。function nongli riqi switch yue if nian 4 0 yue 2 total 如果當年是閏年還要加一天 total total ri 1 加當月的天數 ...