16,551
社区成员
发帖
与我相关
我的任务
分享
#include <iostream.h>
#include <AfxDisp.h>
int main()
{
COleDateTime t(2000,5, 31, 0, 0, 0);
COleDateTimeSpan x(1, 0, 0, 0);
t += x;
cout << t.GetMonth() << endl;
cout << t.GetDay() << endl;
return 0;
}