time.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //time.h
  2. #ifndef TIME
  3. #define TIME
  4. class Time{
  5. public:
  6.   void Set(int h,int m,int s);
  7.   void Display();
  8. protected:
  9.   int hour;
  10.   int minute;
  11.   int second;
  12. };
  13. #endif