c++问题(时间函数)
#include<iostream.h>#include<time.h>intmain()//(动态)输出时间{time_ta;tm*b;clock_tc;while(1...
#include<iostream.h>
#include<time.h>
int main()//(动态)输出时间
{time_t a;
tm *b;
clock_t c;
while(1)
{c=clock()/CLOCKS_PER_SEC;
while(c==clock()/CLOCKS_PER_SEC);//目的是每隔一秒钟执行一次打印函数
a=time('\0');
b=localtime(&a);
cout<<b->tm_hour<<":"<<b->tm_min<<":"<<b->tm_sec<<"\r";}
return 0;
}
运行后没有输出
这个程序哪儿错了
请指教 展开
#include<time.h>
int main()//(动态)输出时间
{time_t a;
tm *b;
clock_t c;
while(1)
{c=clock()/CLOCKS_PER_SEC;
while(c==clock()/CLOCKS_PER_SEC);//目的是每隔一秒钟执行一次打印函数
a=time('\0');
b=localtime(&a);
cout<<b->tm_hour<<":"<<b->tm_min<<":"<<b->tm_sec<<"\r";}
return 0;
}
运行后没有输出
这个程序哪儿错了
请指教 展开
展开全部
#include <windows.h>
#include<iostream.h>
#include<time.h>
int main()//(动态)输出时间
{
time_t a;
tm *b;
clock_t c;
while(1)
{
c=clock()/CLOCKS_PER_SEC;
Sleep(1);//应该这样停止1秒,如果用循环的话cpu占有率太高了,还有个问题,在多进程系统里用clock()/CLOCKS_PER_SEC来判断结果一秒是不对的。
a=time('\0');
b=localtime(&a);
cout<<b->tm_hour<<":"<<b->tm_min<<":"<<b->tm_sec<<"\r";
}
return 0;
}
你的程序没有输出是很正常的现象 因为看似不断的循环读取系统时间,实际上在多进程系统里,进程间切换必定导致这个程序读取的系统时间不是连续的
#include<iostream.h>
#include<time.h>
int main()//(动态)输出时间
{
time_t a;
tm *b;
clock_t c;
while(1)
{
c=clock()/CLOCKS_PER_SEC;
Sleep(1);//应该这样停止1秒,如果用循环的话cpu占有率太高了,还有个问题,在多进程系统里用clock()/CLOCKS_PER_SEC来判断结果一秒是不对的。
a=time('\0');
b=localtime(&a);
cout<<b->tm_hour<<":"<<b->tm_min<<":"<<b->tm_sec<<"\r";
}
return 0;
}
你的程序没有输出是很正常的现象 因为看似不断的循环读取系统时间,实际上在多进程系统里,进程间切换必定导致这个程序读取的系统时间不是连续的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询