首页 用c编写日历文件代码

用c编写日历文件代码

举报
开通vip

用c编写日历文件代码用c编写日历文件代码 文章来源:128191.com /* 该程序在中调试运行通过. */ #include #include #include #include typedef struct { unsigned charday; unsigned charmonth; unsigned shortyear; }T_MFW_DATE; typedef struct { T_MFW_DATE date;/*记录的日期*/ }t_cldrecord; typedef struct...

用c编写日历文件代码
用c编写日历文件代码 文章来源:128191.com /* 该程序在中调试运行通过. */ #include #include #include #include typedef struct { unsigned charday; unsigned charmonth; unsigned shortyear; }T_MFW_DATE; typedef struct { T_MFW_DATE date;/* 记录 混凝土 养护记录下载土方回填监理旁站记录免费下载集备记录下载集备记录下载集备记录下载 的日期*/ }t_cldrecord; typedef struct { T_MFW_DATE today_date;/*在程序中没有作用*/ T_MFW_DATE cursor_date; int days_map[6][7];/*日期地图*/ }t_cldmain_data; t_cldmain_data *cldmain_data; void cldmain_get_days_map(void); void main(void) { int i,j; cldmain_data = (t_cldmain_data*)malloc(sizeof(t_cldmain_data)); cldmain_data->cursor_date.day = 20; while(1) { char buf[20]; char *p; memset(buf,0,20); printf("year month:"); gets(buf); if(buf[0] == ’q’)break; cldmain_data->cursor_date.year = strtod(buf,&p); p ++; cldmain_data->cursor_date.month = strtod(p,&p); printf("year %dmonth %d",(cldmain_data->cursor_date.year),(cldmain_data->cursor_date.month)); cldmain_get_days_map(); printf("motuwthfrsasu"); 文章来源:123217.com 文章来源:128191.com for(j = 0; j < 6; j ++) { printf(""); for(i = 0; i < 7; i ++) { printf("%i",cldmain_data->days_map[j][i]); } printf(""); } } //getchar(); } /* 检查日期是否合法 合法返回1,否则返回0 */ int check_date(T_MFW_DATE date) { char month_days[] = ; /*大于2000年,小于2100年,月份合法*/ if(date.year < 2000 || date.year >= 2100 || date.month < 1 || date.month > 12) { return 0; } /*day合法*/ if(date.day < 1)return 0; if(date.day > month_days[date.month - 1])return 0; if(date.month == 2) { if(date.year % 4 != 0) { if(date.day == 29)return 0; } } return 1; } /* 功能:得到每个月第一天是星期几 星期一 二 三 四 五 六 日 返回值:1 2 3 4 5 6 7 如果返回为0,则出错 */ int get_weekday_of_month(T_MFW_DATE cursor_date) { 文章来源:123217.com 文章来源:128191.com int day; /*参照1997年1月1日,参数cursor_date从2000年1月1日到2099年1月1日*/ //char month_days[] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int this_year_days[] ={ 0, 31, 59, 90, 120, 151,181, 212, 243, 273, 304, 334}; int cursor_year_days = this_year_days[cursor_date.month - 1] + (cursor_date.day = 1); int comp_days = (cursor_date.year - 1997)*365 + cursor_year_days; int i = (cursor_date.year - 1997)/4; comp_days = comp_days + i * 1; if(cursor_date.month > 2) { if( cursor_date.year % 4 == 0 ) { comp_days += 1; } } if(cursor_date.day > 2098)return 0; day = comp_days % 7; /*1997年1月1日是星期三*/ day = (day + 2) % 7; if(day == 0)day = 7; return day; } /* 根据参数的值,得到该年该月有多少天. 返回值:该月的天数 */ int count_days_of_month(T_MFW_DATE cursor_date) { char month_days[] = ; unsigned char day = cldmain_data->cursor_date.day; unsigned char month = cldmain_data->cursor_date.month; unsigned short year = cldmain_data->cursor_date.year; if(month != 2) { return month_days[month -1]; } else { if(year%4 != 0) { return 28; } if(year%4 == 0) { 文章来源:123217.com 文章来源:128191.com if(year%100 == 0) { if(year %400 == 0) { return 29; } return 28; } return 29; } } } /* 得到日期地图,保存到全局结构变量cldmain_data的成员数组变量days_map中. */ void cldmain_get_days_map(void) { int i; int day; T_MFW_DATE cursor_date = cldmain_data->cursor_date; int *map_p = cldmain_data->days_map[0]; int days_count; int weekday; for(i = 0; i < 6*7; i++) { map_p[i] = 0; } if(check_date(cldmain_data->cursor_date) == 0)return; days_count = count_days_of_month(cldmain_data->cursor_date); weekday = get_weekday_of_month(cldmain_data->cursor_date); day = 1; for(i = weekday-1; i < days_count + weekday - 1; i++) { map_p[i] = day; day ++; } } 文章来源:123217.com
本文档为【用c编写日历文件代码】,请使用软件OFFICE或WPS软件打开。作品中的文字与图均可以修改和编辑, 图片更改请在作品中右键图片并更换,文字修改请直接点击文字进行修改,也可以新增和删除文档中的内容。
该文档来自用户分享,如有侵权行为请发邮件ishare@vip.sina.com联系网站客服,我们会及时删除。
[版权声明] 本站所有资料为用户分享产生,若发现您的权利被侵害,请联系客服邮件isharekefu@iask.cn,我们尽快处理。
本作品所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用。
网站提供的党政主题相关内容(国旗、国徽、党徽..)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
下载需要: 免费 已有0 人下载
最新资料
资料动态
专题动态
is_153723
暂无简介~
格式:doc
大小:21KB
软件:Word
页数:0
分类:生活休闲
上传时间:2017-09-16
浏览量:11