#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; }
c++时间处理小程序
时间: 2024-10-27 05:44:21