在记录程序日志时,需要记录时间。如下:
#include <iostream> #include <time.h> #include <windows.h> using namespace std; int main() { time_t t = time(0); char tmp[64]; strftime(tmp, sizeof(tmp), "%Y/%m/%d %X %A %j %z", localtime(&t)); cout << tmp << endl; system("pause"); return 0; }
即Y为年、m为月、d为日、X为具体时分秒、A为星期、j为天数、z为其他,结果如下:
2018/06/04 19:52:54 Monday 155 China Standard Time
原文地址:https://www.cnblogs.com/zhuzhenwei918/p/9135142.html
时间: 2024-11-06 09:27:20