time.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //time.cpp
- #include "time.h"
- #include <iostream.h>
- #include <iomanip.h>
- void Time::Set(int h, int m, int s)
- {
- h%=24; m%=60; s%=60; //简单正确性处理
- hour=h; minute=m; second=s;
- }
- void Time::Display()
- {
- cout <<setfill('0')
- <<setw(2) <<hour <<":"
- <<setw(2) <<minute <<":"
- <<setw(2) <<second <<endl;
- cout <<setfill(' ');
- }