C语言60秒倒计时
时间: 2023-06-21 22:07:54 浏览: 164
60s倒计时,60s倒计时程序,C,C++
5星 · 资源好评率100%
以下是C语言实现的60秒倒计时程序:
```c
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main() {
int i;
for (i = 60; i >= 0; i--) {
printf("%02d\n", i);
sleep(1);
system("clear");
}
printf("Time's up!\n");
return 0;
}
```
程序中用 `for` 循环从60开始倒数到0,每次循环输出当前的秒数,并用 `sleep` 函数暂停1秒钟,再用 `system` 函数清屏,以达到倒计时的效果。在倒计时结束后,输出 "Time's up!" 提示。
阅读全文