제4차 탑승 실천 프로젝트 - 프로젝트 3 - 시간류 - (1)

1902 단어 시간 클래스

질문 및 코드:
/*
* 파일 이름: 시간 클래스
* 저자: 류타오
완성일자:2016.3.27
*
*문제 설명: 설계 프로그램, 정확한 형식의 출력 시간
* 설명 입력: 시간, 분, 초
* 프로그램 출력: 정확한 시간 형식
#include<iostream>
using namespace std;

class Time
{
public:
    void add_a_sec(){sec++;}
    void add_a_minute(){minute++;}
    void add_a_hour(){hour++;}
    void set_time();
void show_time();
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;
}
int main()
{
    Time t1;
    t1.set_time();
    t1.show_time();
    t1.add_a_sec();
    t1.add_a_minute();
    t1.add_a_hour();
    return 0;
}
</pre><pre class="cpp" name="code"><img src="http://img.blog.csdn.net/20160331081730000?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQv/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="" />

좋은 웹페이지 즐겨찾기