第2周專案3-時間類(2)

不被看好的青春叫成長發表於2015-03-14
/*
 * Copyright (c) 2015, 煙臺大學計算機學院
 * All rights reserved.
 * 檔名稱:test.cpp
 * 作    者:劉暢
 * 完成日期:2015年 3 月 14 日
 * 版 本 號:v1.0
 *
 * 問題描述:閱讀、執行程式後,按要求擴充類的功能;
             功能(2):請在原類基礎上,在類內增加下列成員函式(將是內建成員函式)
                    add_seconds(int) //增加n秒鐘
                    add_minutes(int) //增加n分鐘
                    add_hours(int) //增加n小時


 * 輸入描述: 輸入要增加的秒數,分鐘,小時;
 * 程式輸出: 輸出改變後的時間。


 

 

程式碼如下:

#include <iostream>
using namespace std;
class Time
{
public:
    void set_time( );
    void show_time( );
    void add_seconds(int); //增加n秒鐘
    void add_minutes(int); //增加n分鐘
    void add_hours(int); //增加n小時

private:
    bool is_time(int, int, int);    //這個成員函式設定為私有的,是合適的,請品味
    int hour;
    int minute;
    int sec;
};
void Time::set_time( )
{
    char c1,c2;
    cout<<"請輸入時間(格式hh:mm:ss)";
    while(1)
    {
        cin>>hour>>c1>>minute>>c2>>sec;
        if(c1!=':'||c2!=':')
            cout<<"格式不正確,請重新輸入"<<endl;
        else if (!is_time(hour,minute,sec))
            cout<<"時間非法,請重新輸入"<<endl;
        else
            break;
    }
}
void Time::show_time( )
{
    cout<<hour<<":"<<minute<<":"<<sec<<endl;
}
bool Time::is_time(int h,int m, int s)
{
    if (h<0 ||h>24 || m<0 ||m>60 || s<0 ||s>60)
        return false;
    return true;
}

void Time::add_seconds(int n)
{
    sec=sec+n;
    if (sec>=60)
    {
        minute+=(sec/60);
        sec=sec%60;
    }
    if (minute>=60)
    {
        hour+=(minute/60);
        minute=minute%60;
    }

}

void Time::add_minutes(int n)
{
    minute+=n;
    if (minute>=60)
    {
        hour+=(minute/60);
        minute=minute%60;
    }

}

void Time::add_hours(int n)
{
    hour+=n;

}

int main( )
{
    Time t1;
    int n;
    t1.set_time( );
    t1.show_time( );
    cout<<"請輸入需要增加的秒數:";
    cin>>n;
    t1.add_seconds(n);
    t1.show_time();
    cout<<"請輸入需要增加的分鐘數:";
    cin>>n;
    t1.add_minutes(n);
    t1.show_time();
    cout<<"請輸入需要增加的小時數:";
    cin>>n;
    t1.add_hours(n);
    t1.show_time();
    return 0;
}


 


執行結果:

相關文章