首页上一页 1 下一页尾页 1 条记录 1/1页
计时器,实现倒计时功能
发表在C语言图书答疑
2016-10-09
是否精华
是
否
版块置顶:
是
否
#include<stdio.h>
#include<windows.h>
int main()
{
int sec=0,min=1;
while(1)
{
printf("\r%d:%d",min,sec--);
if(sec<0)
{
sec=59;
min--;
if(min<0)
{
printf("\n 时间到!\n"); //提示时间到并跳出循环
break;
}
}
sleep(1000); //延时1000是1秒
}
return 0
}
--------------------Configuration: 计时器 - Win32 Debug--------------------
Compiling...
计时器.cpp
d:\cc\mr\instance\03\3.1\计时器.cpp(19) : error C2065: 'sleep' : undeclared identifier
d:\cc\mr\instance\03\3.1\计时器.cpp(22) : error C2143: syntax error : missing ';' before '}'
执行 cl.exe 时出错.
计时器.exe - 1 error(s), 0 warning(s)
#include<windows.h>
int main()
{
int sec=0,min=1;
while(1)
{
printf("\r%d:%d",min,sec--);
if(sec<0)
{
sec=59;
min--;
if(min<0)
{
printf("\n 时间到!\n"); //提示时间到并跳出循环
break;
}
}
sleep(1000); //延时1000是1秒
}
return 0
}
--------------------Configuration: 计时器 - Win32 Debug--------------------
Compiling...
计时器.cpp
d:\cc\mr\instance\03\3.1\计时器.cpp(19) : error C2065: 'sleep' : undeclared identifier
d:\cc\mr\instance\03\3.1\计时器.cpp(22) : error C2143: syntax error : missing ';' before '}'
执行 cl.exe 时出错.
计时器.exe - 1 error(s), 0 warning(s)