[bo][un]嬿·嘄·骊·戨[/un] 在 2008-10-31 21:01 的发言:[/bo]
是不是这样
main(){time() ctime()}
加上time.h
#include <stdio.h>
#include <time.h>
#include <string.h>
#define
LEN
100
void Go_back(int
n) {
int
i ;
for (i = 1 ; i <= n ; i++)
putchar('\b') ;
return ;
}
int main(void) {
time_t current_time
;
int
n ;
char str[LEN] ;
fputs("Current_Time: " , stdout) ;
while(1) {
current_time = time(0) ;
strcpy(str , ctime(¤t_time)) ;
n = strlen(str) ;
str[n-1] = 0 ;
fputs(str,stdout) ;
Go_back(n-1) ;
}
return 0 ;
}