用c++编写一个时间类Time,包含时,分,秒3个数据成员

编写一个时间类Time,包含时,分,秒3个数据成员,成员函数实现对这3个数据成员数值的设置和显示功能。另外要求:1.time类的定义包含在头文件time.h中;2.成员函... 编写一个时间类Time,包含时,分,秒3个数据成员,成员函数实现对这3个数据成员数值的设置和显示功能。
另外要求:1.time类的定义包含在头文件time.h中;
2.成员函数的定义包含在源程序文件time.cpp中;
3.主函数的定义包含在源程序文件client.cpp中。
展开
 我来答
小星星教育知识分享
高粉答主

2019-11-26 · 用教师的智慧点燃学生的智慧火花
小星星教育知识分享
采纳数:202 获赞数:67136

向TA提问 私信TA
展开全部

#include<iostream.h>

classTimer

{

longsecond;

public:

Timer(intsecond)

{

this->second=second;

}

Timer(intminute,intsecond)

{

this->second=minute*60+second;

}

Timer(inthour,intminute,intsecond)

{

this->second=hour*60+minute*60+second;

}

intgetSecond()

{

returnsecond;

}

};

voidmain()

{

Timert1(45),t2(10,25),t3(1,4,10),t4(2,16,0);

cout<<"Fromt1tot2:"<<t2.getSecond()-t1.getSecond()<<endl;

cout<<"Fromt3tot4:"<<t4.getSecond()-t3.getSecond()<<endl;

}

扩展资料

定义一个日期类:包括年、月、日三个成员变量,显示日期的方法

publicclassDemo{

publicstaticvoidmain(String[]args){

Datedate1=newDate(1994,5,22);

date1.showInfo();

Datedate2=newDate();

date2.year=1995;

date2.month=6;

date2.day=29;

date2.showInfo();

}

}

//日期类:

publicclassDate{

intyear;

intmonth;

intday;

//构造方法

publicDate(intyear,intmonth,intday){

this.year=year;

this.month=month;

this.day=day;

}

publicDate(){

}

publicvoidshowInfo(){

System.out.println(year+"年"+month+"月"+day+"日");

}

}

czbhduehbdhfhd
2019-03-07
知道答主
回答量:1
采纳率:0%
帮助的人:767
展开全部
为什么 void main()这边显示错误丫
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
问捱捱抵得
推荐于2018-04-13 · TA获得超过343个赞
知道小有建树答主
回答量:171
采纳率:0%
帮助的人:227万
展开全部
1:头文件:
#include<iostream>
using namespace std;
class Time
{
public:
Time(int a,int b, int c);
void display();
private:
int hour;
int min;
int sec;
};
2:time.cpp
#include<iostream>
#include"time.h"
Time::Time(int a,int b,int c)
{
hour=a;
min=b;
sec=c;
}
void Time::display()
{
cout<<hour<<":"<<min<<":"<<sec<<endl;
}
3:client.cpp
#include<iostream>
#include"time.h"
using namespace std;
void main()
{
Time t(12,13,45);
t.display();
}
运行过了,不懂可追问。
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 2条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式