用c语言写一个交通信号灯倒计时的程序
时间: 2023-10-13 07:04:50 浏览: 93
好的,以下是一个简单的交通信号灯倒计时的程序,使用了C语言编写:
```c
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main()
{
int red = 10, yellow = 3, green = 15; // 信号灯的倒计时时间
int current_color; // 当前的信号灯颜色
time_t start_time, current_time; // 计时器
current_color = 1; // 初始为红灯
start_time = time(NULL); // 记录开始时间
while (1) {
current_time = time(NULL);
if (current_time - start_time >= (current_color == 1 ? red : (current_color == 2 ? yellow : green))) {
current_color = current_color % 3 + 1; // 1->2->3->1
start_time = current_time; // 重置计时器
}
// 根据当前的信号灯颜色输出倒计时时间
printf("%s: %d\n", current_color == 1 ? "Red" : (current_color == 2 ? "Yellow" : "Green"),
(current_color == 1 ? red : (current_color == 2 ? yellow : green)) - (current_time - start_time));
// 模拟延时
for (int i = 0; i < 100000000; i++) {}
system("cls"); // 清屏
}
return 0;
}
```
程序中使用了time函数获取当前时间,然后根据信号灯的倒计时时间以及当前颜色,计算出倒计时剩余时间。为了保证输出的信息能够不断更新,程序采用了一个for循环模拟延时,并使用system函数清屏。
阅读全文