第七周实践项目2————Date Time类

问题及代码:

/*copyright(c)2016.烟台大学计算机学院 
 * All rights reserved, 
 * 文件名称:text.Cpp 
 * 作者:吴敬超 
 * 完成日期:2016年4月10日 
 * 版本号:vc++6.0 
 * 
 * 问题描述: Date Time类 
 * 输入描述: 
 * 程序输出: 输出结果 
 */ 

#include<iostream>
using namespace std;
class Date; //对Date类的提前引用声明
class Time
{
public:
    Time(int,int,int);
    void add_a_second(Date &);  //增加1秒,1秒后可能会到了下一天,乃到下一月、下一年
    void display(Date &);  //显示时间,格式:月/日/年 时:分:秒
private:
    int hour;
    int minute;
    int sec;
};
class Date
{
public:
    Date(int,int,int);
    friend class Time ; //Time为Date的友元类
private:
    int month;
    int day;
    int year;
};
Time::Time (int h,int m,int s)
{
    hour=h;
    minute=m;
    sec=s;
}
void Time::display(Date &d)
{
    cout<<d.month<<"/"<<d.day<<"/"<<d.year<<endl;
    cout<<hour<<":"<<minute<<":"<<sec<<endl;
}
Date::Date(int m,int d,int y)
{
    year=y;
    month=m;
    day=d;
}
void Time::add_a_second(Date &t)
{ sec++;
    if(sec>=60)
    {
        minute+=sec/60;
        sec=sec%60;
        if(minute>=60)
        {
            hour+=minute/60;
            minute%=60;
            if(hour>=24)
            {
                t.day+=hour/24;
                hour=hour%24;
                switch(t.month)
                {
                    case 1:
                    case 3:
                    case 5:
                    case 7:
                    case 8:
                    case 10:
                    case 12:if(t.day>31)
                    {
                        t.month+=t.day/31;
                        t.day%=31;
                        if(t.month>12)
                        {
                            t.year+=t.month/12;
                            t.month%=12;
                        }
                    }break;
                    case 4:
                    case 6:
                    case 9:
                    case 11:if(t.day>30)
                    {
                        t.month+=t.day/30;
                        t.day%=30;
                        if(t.month>12)
                        {
                            t.year+=t.month/12;
                            t.month%=12;
                        }
                    }break;
                    case 2:if(((t.year%4==0&&t.year%100!=0)||t.year%400==0))
                            {
                                if(t.day>29)
                                {
                                t.month+=t.day/29;
                                t.day%=29;
                                if(t.month>12)
                                {
                                    t.year+=t.month/12;
                                    t.month%=12;
                                }
                                }
                            }
                            else
                            {
                                if(t.day>28)
                                {
                                t.month+=t.day/28;
                                t.day%=28;
                                if(t.month>12)
                                {
                                    t.year+=t.month/12;
                                    t.month%=12;
                                }
                                }
                            }
                }
            }
        }
    }
}
int main( )
{
    Time t1(23,59,32);
    Date d1(12,31,2013);   //测试时,再试试Date d1(2,28,2013)会如何
    for(int i=0; i<=100; i++)
    {
        t1.add_a_second(d1);
        t1.display(d1);
    }
    return 0;
}

运行结果:

学习心得:

这次练习是我加深了对友元函数的理解,学会了友元的调用和函数的引用

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值