回复 10楼 rly
#include <stdio.h>
#include <time.h>
#include <Windows.h>
main()
{
time_t t;
tm *tm;
while(1)
{
Sleep(1000);
time(&t);
tm=localtime(&t);
printf("%02d:%02d:%02d\r",tm->tm_hour,tm->tm_min,tm->tm_sec);
}
}
[ 本帖最后由 godbless 于 2009-8-17 11:11 编辑 ]
#include <stdio.h>
#include <time.h>
#include <Windows.h>
main()
{
time_t t;
tm *tm;
while(1)
{
Sleep(1000);
time(&t);
tm=localtime(&t);
printf("%02d:%02d:%02d\r",tm->tm_hour,tm->tm_min,tm->tm_sec);
}
}
[ 本帖最后由 godbless 于 2009-8-17 11:11 编辑 ]