C 專案獲取當前時間的農曆時間

2021-06-05 09:44:02 字數 1308 閱讀 2268

using system.globalization;

class cncanlendar_nongli

;/// /// 十二地支

///

private static string dz = ;

/// /// 十二生肖

///

private static string sx = ;

/// /// 返回農曆天干地支年

///

/// 農曆年

///

public static string getlunisolaryear(int year)

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

}/// /// 農曆月

///

///

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 static string getchinesedatetime(datetime datetime)

else if (month > leapmonth)

}return string.concat(getlunisolaryear(year), "年", isleap ? "閏" : string.empty, getlunisolarmonth(month), "月", getlunisolarday(day));

}}

獲得農曆時間

var calendardata new array 100 var madd new array 12 var tgstring 甲乙丙丁戊己庚辛壬癸 var dzstring 子丑寅卯辰巳午未申酉戌亥 var numstring 一二三四五六七 十 var monstring 正二三四五六七 十...

c 獲取當前時間

include include using namespace std int main time t ltime char tmpbuf 128 方法1 分別獲取當前時間,日期 display operating system style date and time.strtime tmpbuf ...

C 獲取當前時間

獲取日期 時間 datetime.now.tostring 2008 9 4 20 02 10 datetime.now.tolocaltime tostring 2008 9 4 20 12 12 獲取日期 datetime.now.tolongdatestring tostring 2008年9...