首页 > 代码库 > c++时间处理小程序

c++时间处理小程序

#include <time.h> #include <stdio.h> #include<iostream>using namespace std;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 ); system("pause");return 0; }