仪器社区

求c++简易计时器

Cy28ds7 2011-02-10
采用dev-c++编译环境,越简易越好,只需从循环开始开始计时,x秒后执行另一指令,计时器清零,重新计时,再执行同一指令,如此反复,直至循环结束即可,高手解答,万分感谢,高分悬赏!
评论
全部评论
豆豆酱999959
#include
#include
using namespace std;
void timer(int x)
{
unsigned long cnt=0, pre=0;
time_t t=time(NULL);
while(time(NULL)==t) pre++;
for(int i=1;i {
t=time(NULL);
while(time(NULL)==t) ++cnt;
}
if(cnt)
{
cnt/=x-1;
while(cnt-->pre) time(NULL);
}
}
int main()
{
for(int i=0; i<5; i++)
{
timer(3);
cout << "3秒过去了" << endl;
}
return 0;
}
1 0 2017-10-07 0条评论 回复
翌樾
秒级不用使用计时器直接用sleep函数就ok了,
while(1)
{
执行命令
Sleep(1000*x); //参数是毫秒 你要x秒那就乘以x
}
15 0 2011-02-11 0条评论 回复
您可能感兴趣的社区主题
加载中...
发布 评论