C语言六十秒倒计时程序
时间: 2023-10-04 12:12:40 浏览: 117
60s倒计时,60s倒计时程序,C,C++
5星 · 资源好评率100%
以下是一个简单的 C 语言代码,用于实现 60 秒的倒计时:
```c
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
int seconds = 60;
time_t start_time = time(NULL);
while (seconds > 0) {
printf("%d\n", seconds);
time_t current_time = time(NULL);
seconds = 60 - (current_time - start_time);
}
printf("Time's up!\n");
return 0;
}
```
程序使用了 `time.h` 头文件中的 `time()` 函数来获取当前时间,然后计算剩余秒数,最后通过 `printf()` 函数将剩余秒数输出到控制台。程序会不断循环直到计时结束。
阅读全文