2012年(158)
分类: C/C++
2012-11-23 15:27:25
网友评论2012-11-23 15:38:44
周星星
#include <windows.h>
#include <time.h>
#include <stdio.h>
void printtime( const struct tm* ptm )
{
printf( "%04d年%02d月%02d日 %02d时%02d分%02d秒\n"
, ptm->tm_year+1900, ptm->tm_mon+1, ptm->tm_mday
, ptm->tm_hour, ptm->tm_min, ptm->tm_sec );
printf( "本年第%03d天,星期%01d\n"<