Posted on 2007-07-10 15:57
魔のkyo 阅读(284)
评论(0) 编辑 收藏 引用
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main()
{
int x,i;
printf("时间设定(s):");
scanf("%d",&x);
for(i=x;i>=0;i--){
printf("\r%10d",i);
_sleep(1000);
}
printf("时间已到!\n");
while(!kbhit()){
printf("\a");
_sleep(500);
}
}