谁会用C++编写此程序,跪求!!!谢谢 定义一个日期类Date

定义一个日期类Date,其中包括,年,月,日三个数据成员,有构造函数,设置日期函数,显示日期函数,拷贝构造函数.编写主函数测试类的功能.必须用C++做谢谢... 定义一个日期类Date,其中包括,年,月,日三个数据成员,有构造函数,设置日期函数,显示日期函数,拷贝构造函数.编写主函数测试类的功能.
必须用C++做谢谢
展开
 我来答
百度网友77dd25f
2007-06-18 · TA获得超过133个赞
知道小有建树答主
回答量:279
采纳率:0%
帮助的人:287万
展开全部
程序见下:

#include<iostream.h>

class CDateINfo
{
public:
//默认的构造函数
CDateINfo()
{
cout<<"调用默认的构造函数\n";
m_nYear=2000;
m_nMonth=1;
m_nDay=1;
};
//有参数的构造函数
CDateINfo(int nYear,int nMonth,int nDay)
{
cout<<"调用带参数的构造函数\n";
m_nYear=nYear;
m_nMonth=nMonth;
m_nDay=nDay;
}
//拷贝构造函数
CDateINfo(CDateINfo &data)
{
cout<<"调用拷贝构造函数\n";
m_nYear=data.m_nYear;
m_nMonth=data.m_nMonth;
m_nDay=data.m_nDay;
};
~CDateINfo(){};
//设置日期
void SetDateINfo(int nYear,int nMonth,int nDay)
{
m_nYear=nYear;
m_nMonth=nMonth;
m_nDay=nDay;
};
//打印日期
void PrintDateINfo()
{
cout<<"年:"<<m_nYear<<endl;
cout<<"月:"<<m_nMonth<<endl;
cout<<"日:"<<m_nDay<<endl;
};

public:
int m_nYear;
int m_nMonth;
int m_nDay;
};

void main()
{
CDateINfo di1(2007,6,18),di2;
di2.PrintDateINfo();
di2.SetDateINfo(2007,1,1);
CDateINfo d3(di1);
di1.PrintDateINfo();
}
树天罡91
2007-06-18 · TA获得超过134个赞
知道答主
回答量:265
采纳率:0%
帮助的人:0
展开全部
你可以不用C++做这么简单的程序,可以使用OFFICE来制作,如果你想体面点,可以下载E语言来制作
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式