大家帮忙看看这个程序~!
#include <stdio.h>#include <time.h>
void wait ( int seconds )
{
clock_t endwait; //小弟这里看不懂了~!不知道这个函数是什么意思~!
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait) {}
}
int main ()
{
int n;
printf ("Starting countdown...\n");
for (n=10; n>0; n--)
{
printf ("%d\n",n);
wait (1);
}
printf ("FIRE!!!\n");
return 0;
}
在网上查到了一些有关ctime.h的解释,但是都是英文的,所以理解的不是很透彻~!希望大吓们能稍微给小弟解释一下~!谢谢了!!!