C++获取本地时间
2018-01-21 本文已影响0人
唯师默蓝
#include <iostream>
#include <time.h>
using namespace std;
int main()
{
time_t t = time(0);
char tmp[64];
strftime(tmp, sizeof(tmp), "%Y/%m/%d/%X %A", localtime(&t));
cout << tmp << endl;
return 0;
}