// 22.5HV2 Software Engineering II // Unit 4 Exercise 4 class Clock { public: Clock(int=0,int=0,int=0); void tick(); void show_time(); protected: int hour, minute, second; };