小练习:时钟

#include
#include//sleep(1)的头文件
#include
#include
using namespace std;
class alexlock
{
    int m_hour;
    int m_min;
    int m_sec;
public:
    void set(int h, int m, int s)
    {
        m_hour=h;
        m_min=m;
        m_sec=s;
    }
    void show()
    {
        cout<

你可能感兴趣的:(小练习:时钟)