C 時間類 時間的設定

2021-09-24 05:16:32 字數 632 閱讀 6299

//資料成員包括:年月日小時分鐘秒

//成員函式包括:年月日的設定,小時分鐘秒的設定,其中包括輸入錯誤的檢查,並提示重新的輸入;

//顯示函式,顯示格式按照標準格式,如2013-04-11 10:20:30;

#include#includeusing namespace std;

class date;

class time

; void display(date &d);

};class date

; friend void time::display(date &d);

};void time::display(date &d)

{ while (1)

{ cout<

cin>>d.year>>d.month>>d.day;

cin>>hour>>minute>>second;

if(d.month>12||d.month<1||d.day>31||d.day<0||hour>24||hour<0||minute>60||minute<0||second>60||second<0)

{ cout<

C 設定電腦時間幫助類

using system using system.collections.generic using system.diagnostics using system.linq using system.text using system.threading.tasks year,month,day...

C 設定電腦時間幫助類

using system using system.collections.generic using system.diagnostics using system.linq using system.text using system.threading.tasks year,month,day...

C 時間設定

using system using system.globalization public class mainclass string date for int i 0 i format.length i output.d 2005 6 11 d 2005年6月11日 f 2005年6月11日 ...