C++實現鬧鐘程式的方法_C 語言

來源:互聯網
上載者:User

本文所述為C++實現鬧鐘程式的方法,代碼結構相對簡單,注釋也較為完善。現分享給大家供大家參考。

具體功能代碼如下:

#include<iostream> #include<string> #include<ctime> using namespace std;//時間類class Time{private:    int hour;    int minute;    int second;public:    //設定時間    void set(int h,int m,int s){        hour = h;        minute = m;        second = s;    }    //時間走一秒,時分秒的變化情況    void next(){        if(second<59)            second++;        else if(minute<59){            second=0;            minute++;}        else if(hour<23){            minute=0;            hour++;}        else            hour=0;    }    //得到時間    int get(){        return hour*10000+minute*100+second;    }};//時鐘類class Clock{private:    Time now;    Time ring_time;public:    //對錶,設定初始時間    void adjust_now(int h,int m,int s){        now.set(h,m,s);        cout<<"現在的時間是:"<<h<<"時"<<m<<"分"<<s<<"秒"<<endl;    }    //設定鬧鈴時間    void adjust_ring(int h,int m,int s){        ring_time.set(h,m,s);        cout<<"鬧鈴時間是:"<<h<<"時"<<m<<"分"<<s<<"秒"<<endl;    }    //時間過一秒    void tick(){        long int old=time(0);        while(time(0)==old)            ;        now.next();    }    //顯示目前時間    void showtime(){        cout<<now.get()<<endl;    }    //時鐘開始走時,等到了鬧鈴時間,開始響    void run(){        do{            tick();            showtime();            if(now.get()>=ring_time.get())                cout<<'\a';        }while(1);    }};int main(){    Clock c;    c.adjust_now(18,35,40);     //起始時間    c.adjust_ring(18,35,45);    //鬧鈴時間    c.run();}

感興趣的讀者可以測試回合一下該執行個體代碼,功能不足之處可以根據情況加以改進和完善。希望該執行個體能夠對大家學習C++起到一定的協助作用。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.