标题:定时器程序改变!
只看楼主
sky4356192
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2007-5-21
 问题点数:0 回复次数:0 
定时器程序改变!

#include <stdio.h>
#include <time.h>

main()
{
clock_t start,end;
int n;
printf("How many seconds do you want to count? ");
scanf("%d",&n);
getchar();
clrscr();
start=end=clock();
while((n-(int)(end-start)/19)>=0&!kbhit())
{
printf("the time is: %d",n-(int)(end-start)/19);
sleep(1);
end=clock();
clrscr();
}
}

这程序是个定时器程序,谁帮我改一下啊,改成20点p1和p2输出1和1,24点输出1和0,6点输出0和0

搜索更多相关主题的帖子: include seconds 定时器 sleep count 
2007-05-22 18:12



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




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

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