博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

05 2010 档案

摘要://日历//关键是先找出一年中的第一天是这一年中的晚期几#include stdio.h#include windows.hbool bMonthFlags = false;/*以月来换页*///判别闰年bool IsLeapYear(int iYear){return ((iYear%400 == 0) || ((iYear%4 == 0) && (iYear%100 != 0)));}//一年中的第一天是这一年中的星期几int GetYearDay(){SYSTEMTIME sysTime;GetLocalTime(&sysTime);int iYear = sysTime.wYe 阅读全文

posted @ 2010-05-26 14:17 ccmfc 阅读(254) 评论(0) 推荐(0)

摘要:加油!加油!!加油!!! 阅读全文

posted @ 2010-05-03 19:42 ccmfc 阅读(133) 评论(0) 推荐(0)

摘要:分享功能头文件Operator.h#include "Student.h"//增加bool Insert();bool InsertAccount();//删除bool Delete();bool DeleteAll();bool DeleteAccount();//查询bool Find();int Find(const char *tTempNumber);int Find(const char* tUser, const char* tPassword);int FindReg(const char* tUser);//修改bool Modify();bool Modify(const 阅读全文

posted @ 2010-05-01 02:43 ccmfc 阅读(368) 评论(0) 推荐(0)