c语言 倒计时程序
#include<stdio.h>#include<time.h>main(){clock_tstart,end;intn;printf("Howmanysecondsd...
#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();
start=end=clock();
while((n-(int)(end-start)/19)>=0)
{
printf("the time is: %d",n-(int)(end-start)/19);
sleep(1);
end=clock();
clrscr();
}
}
这是一个倒计时程序(TC20下编辑的),我想对它设置一个停止功能,比如说
60秒倒计时 我现在它34秒时按0键停止倒计时,并且输出倒计时的时间。我应该如何改进? 展开
#include <time.h>
main()
{
clock_t start,end;
int n;
printf("How many seconds do you want to count? ");
scanf("%d",&n);
getchar();
start=end=clock();
while((n-(int)(end-start)/19)>=0)
{
printf("the time is: %d",n-(int)(end-start)/19);
sleep(1);
end=clock();
clrscr();
}
}
这是一个倒计时程序(TC20下编辑的),我想对它设置一个停止功能,比如说
60秒倒计时 我现在它34秒时按0键停止倒计时,并且输出倒计时的时间。我应该如何改进? 展开
2个回答
2011-07-05
展开全部
对硬件的啊。
P2=0;
P1=display_code[display_data[i]];
P2=k;
k=k>>1;
不懂。
不过感觉问题不大。先把main里的i的上限从250改到216.
在display()里做3个判断(可能会要做个全局变量,或者加个参数,记录当前是多少。)
判断是否是0,大于10,大于100
另外,站长团上有产品团购,便宜有保证
P2=0;
P1=display_code[display_data[i]];
P2=k;
k=k>>1;
不懂。
不过感觉问题不大。先把main里的i的上限从250改到216.
在display()里做3个判断(可能会要做个全局变量,或者加个参数,记录当前是多少。)
判断是否是0,大于10,大于100
另外,站长团上有产品团购,便宜有保证
2011-07-04
展开全部
#include <stdio.h>
#include <time.h>
#include <dos.h>
#include <conio.h>
void main()
{
clock_t start,end;
int n;
char ch=0;
printf("How many seconds do you want to count? ");
scanf("%d",&n);
getchar();
start=end=clock();
while((n-(int)(end-start)/19)>=0)
{
printf("the time is: %d",n-(int)(end-start)/19);
sleep(1);
end=clock();
if( kbhit() )
ch = getch();
if(ch=='0' )
{
getchar();
break;
}
clrscr();
}
}
#include <time.h>
#include <dos.h>
#include <conio.h>
void main()
{
clock_t start,end;
int n;
char ch=0;
printf("How many seconds do you want to count? ");
scanf("%d",&n);
getchar();
start=end=clock();
while((n-(int)(end-start)/19)>=0)
{
printf("the time is: %d",n-(int)(end-start)/19);
sleep(1);
end=clock();
if( kbhit() )
ch = getch();
if(ch=='0' )
{
getchar();
break;
}
clrscr();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询