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

C#编程

开发平台:

Visual C++

  1. //time.cpp
  2. #include "time.h"
  3. #include <iostream.h>
  4. #include <iomanip.h>
  5. void Time::Set(int h, int m, int s)
  6. {
  7.   h%=24; m%=60; s%=60;  //简单正确性处理
  8.   hour=h; minute=m; second=s;
  9. }
  10. void Time::Display()
  11. {
  12.   cout <<setfill('0')
  13.        <<setw(2) <<hour <<":"
  14.        <<setw(2) <<minute <<":"
  15.        <<setw(2) <<second <<endl;
  16.   cout <<setfill(' ');
  17. }