倒计时60s代码运行错误
新手,写了一个60s倒计时代码,但提示错误,我赶脚没毛病啊ps:《停顿一秒的代码到底是什么》
代码如下
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a;
a=60;
system("color 0a");
while(a>=0)
{
system("cls");
printf("%d",a);
sleep(1000);
a=a-1;
}
system("pause");
return 0;
}
谢谢各位了