精选优质文档-倾情为你奉上/*本程序在 Microsoft Visual Studio 2010 旗舰版中测试通过*/#include stdio.h#include stdlib.h#include time.h#include conio.h#define KEYUP 72/宏定义键盘的键值()#define KEYDOWN 80/宏定义键盘的键值()#define KEYLEFT 75/宏定义键盘的键值()#define KEYRIGHT 77/宏定义键盘的键值()/函数声明部分const int isLeap(int year);const int getMonthDays(int year,int month);const int yearDays(int year);void printCalendar(int year,int month);void main()int year,month;int action = 0;/获取本地当前的年份和月