C 把日期轉化成星期

2022-07-15 06:45:09 字數 2105 閱讀 8832

顯示效果:

前台頁面**:

1"0

" x:name="

lb_txt_0

" text="

選中日期

" fontsize="

13"/>2"

1" x:name="

lb_txt_1

" text="

哪年" fontsize="

13"/>3"

2" x:name="

lb_txt_2

" text="

哪月" fontsize="

13"/>4"

3" x:name="

lb_txt_3

" text="

當月第幾天

" fontsize="

13"/>5"

4" x:name="

lb_txt_4

" text="

星期幾" fontsize="

13">6"

5" x:name="

lb_txt_5

" text="

當月總天數

" fontsize="

13">7"

6" x:name="

lb_sum

" text="

所有日期

" fontsize="

13">

view code

後台**:

1

//指定日期

2 datetime selecttime =convert.todatetime(rdp_schedule.selectedvalue);

3 lb_txt_0.text = "

" +selecttime;4//

哪年5int year =selecttime.year;

6 lb_txt_1.text = "

哪年:" + year + "年"

;7//哪月

8int month =selecttime.month;

9 lb_txt_2.text = "

哪月:" + month + "月"

;10//第幾天

11int day =selecttime.day;

12 lb_txt_3.text = "

當月第幾天:

" +day;

1314

//星期幾

15string week_en = selecttime.dayofweek.tostring();//

英文星期幾

16string weekremarks = new

string ;

17string week_cn = weekremarks[convert.toint16(selecttime.dayofweek)];//

中文星期幾

18 lb_txt_4.text = "

星期幾:

" + week_en + "

[" + week_cn + "]"

;1920//

乙個月的總天數

21int totaldays =datetime.daysinmonth(year, month);

22 lb_txt_5.text = "

該月天數:

" +totaldays;

2324

//顯示該月所有日期是星期幾

2526

string timedays = "";27

for (int i = 1; i <= totaldays; i++)

2833

34 lb_sum.text = timedays;

view code

c 中如何把int轉化成char

在 c 裡把其它 型別轉換 成字串時最好是用純 c 的機制 stringstream 類。include include using namespace std void main stringstream 的 str 方法返回 string string 的 c str 方法則返回 c 字串。應當...

把字串轉化成整數

這道題看似很簡單,實現其基本功能,大部分人都能用10行 之內的 解決。while str 但是,當我們要把很多特殊的情況即測試用例都考慮進去,卻不是一件容易的事。比如 空指標 空字串 正負號 溢位等方方面面的測試用例都考慮到,並在寫 時對這些特殊的輸入都定義好合理的輸出,define crt sec...

fastjson把物件轉化成json避免 ref

1.disablecircularreferencedetect來禁止迴圈引用檢測 2.json.tojsonstring serializerfeature.disablecircularreferencedetect 3.專案中遇到問題的源 查詢所有的訂單 3.引用是通過 ref 來表示的 引用...