//#include "stdafxh"//If the vc++60, with this line
#include "stdioh"
#include "stdlibh"
#include "timeh"
int main(void){
struct tm ptr;
time_t t;
int s=0,x;
while(1){
t=time(NULL);
ptr=localtime(&t);
if((x=ptr->tm_sec)!=s){
system("cls");
printf(asctime(ptr));
s=x;
}
}
return 0;
}
以上就是关于c程序中。获取并显示当前年月日及时间,并做一个每秒刷新时间的功能函数全部的内容,包括:c程序中。获取并显示当前年月日及时间,并做一个每秒刷新时间的功能函数、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)