時間

 

//方案— 優點:僅使用C標準庫;缺點:只能精確到秒級

#include <time.h>

#include <stdio.h>

int main( void )

{

    time_t t = time( 0 );

    char tmp[64];

    strftime( tmp, sizeof(tmp), "%Y/%m/%d %X %A 本年第%j天 %z",

localtime(&t) );

    puts( tmp ); 

    return 0;

}

//方案二 優點:能精確到毫秒級;缺點:使用了windows API

#include <windows.h>

#include <stdio.h>

int main( void )

{

        SYSTEMTIME sys;

        GetLocalTime( &sys );

        printf( "%4d/%02d/%02d %02d:%02d:%02d.%03d 星期%1d\n"

                ,sys.wYear,sys.wMonth,sys.wDay

                ,sys.wHour,sys.wMinute,sys.wSecond,sys.wMilliseconds

                ,sys.wDayOfWeek); 

        return 0;

}

//方案三,優點:利用系統函數

#include<stdlib.h>

#include<iostream>

using namespace std;

void main(){

    system("time");

}

可以改變電腦的時間設定

方案4:

#include<iostream>

#include<ctime>

using namespace std;

int main()

{

time_t now_time;

now_time = time(NULL);

cout<<now_time;

return 0;

}

另一:_strdate(tempstr);

另二:

CString CTestView::GetTime()

{

   CTime CurrentTime=CTime::GetCurrentTime();

   CString strTime;   

   strTime.Format("%d:%d:%d",CurrentTime.GetHour(),  CurrentTime.GetMinute(),CurrentTime.GetSecond());

   return strTime;

} language=VBScript>call ReplaceSubjectHTML_emote(592915)
發佈了51 篇原創文章 · 獲贊 23 · 訪問量 11萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章