标题:[求助] 请教关于time.h里的内容
取消只看楼主
wordess
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2006-10-27
 问题点数:0 回复次数:2 
[求助] 请教关于time.h里的内容

谁能帮我解释一下,,下面的程序:
#include "stdio.h"
#include "stdlib.h"
#include "time.h"

void sleep(int nbr_seconds);

int main(void)
{
int ctr;
int wait=13;

printf("delay for %d seconds \n",wait);
printf(">");

for(ctr=1;ctr<=wait;ctr++)
{
printf(".");
fflush(stdout);//解释一下:
sleep((int)1);


}
printf("done\n");
return 0;
}

void sleep(int nbr_seconds)
{
clock_t goal;
goal=(nbr_seconds * CLOCKS_PER_SEC)+clock();//解释一下,,

while(goal>clock())
{
;
}
}

我尤其不明白 CLOCKS_PER_SEC 是什么东西,,还有为什么要+clock()....clock()的函数是怎么写的?具体完成什么功能

谢谢各位,,我是新手,,照顾一下啊;

搜索更多相关主题的帖子: int ctr time void 
2006-11-29 16:01
wordess
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2006-10-27
得分:0 
有没有高手,请教一下啊
2006-11-29 16:43
wordess
Rank: 1
等 级:新手上路
帖 子:26
专家分:0
注 册:2006-10-27
得分:0 

谢谢你

2006-11-29 17:38



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-106129-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.052814 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved