码迷,mamicode.com
首页 > 其他好文 > 详细

SDUTOJ 2711 4-2 电子时钟中的运算符重载

时间:2014-10-14 21:00:29      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:运算符重载

bubuko.com,布布扣
#include<iostream>
#include<stdio.h>
using namespace std;
class Time
{
private:
    int h, m, s;
public:
    Time();
    Time(int,int,int);
    void display();
    void tick();
    Time operator ++();
    bool operator >(Time);
};
bool Time::operator >(Time a)
{
    if(h*3600+m*60+s>a.h*3600+a.m*60+a.s)
        return true;
    else
        return false;
}
Time Time::operator ++()
{
    if(++s>=60)
    {
        s=0;
        if(m++>=60)
        {
            m=0;
            h++;
        }
    }
    return *this;
}
void Time::display()
{
    printf("%02d:%02d:%02d\n",h,m,s);
}
Time::Time()
{
    h=12;
    m=0;
    s=0;
}
Time::Time(int a,int b,int c)
{
    if(b>=60||b<0)b=0;
    if(c>=60||c<0)c=0;
    h=a;
    m=b;
    s=c;
}
int main()
{
    int a[6];
    for(int i=0;i<6;i++)
        cin>>a[i];
    Time t1(a[0],a[1],a[2]),t2(a[3],a[4],a[5]);
    if(t1>t2)
        cout<<"The begin time is not earlier than the end time!"<<endl;
    else
    {
        while(t2>t1)
        {
            t1.display();
            ++t1;
        }
        t1.display();
    }
    return 0;
}



SDUTOJ 2711 4-2 电子时钟中的运算符重载

标签:运算符重载

原文地址:http://blog.csdn.net/r_misaya/article/details/40081919

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!