摘要:
/* * cal.c * * Created on: 2013-3-11 * Author: J.WANG */#include <stdlib.h>#include <stdio.h>//三维数组存放日期,每年12月,日历中最多排6行(星期),每星期7天int days[12][6][7];//平年,闰年每个月的天数int ds[2][12] = { { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }, { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } };//标题c 阅读全文
posted @ 2013-06-12 12:35
Jw.snow
阅读(290)
评论(0)
推荐(0)
浙公网安备 33010602011771号