-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTrafficLightControl.java
52 lines (44 loc) · 1.5 KB
/
TrafficLightControl.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import java.util.Scanner;
/* Manual controller for traffic light */
public class TrafficLightControl {
// enum type declaration occurs outside the main method
public enum LightState {RED, GREEN, YELLOW, DONE}
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
LightState lightVal;
String userCmd;
lightVal = LightState.RED;
userCmd = "-";
System.out.println("User commands: n (next), r (red), q (quit).\n");
while (lightVal != LightState.DONE) {
if (lightVal == LightState.GREEN) {
System.out.print("Green light ");
userCmd = scnr.next();
if (userCmd.equals("n")) { // Next
lightVal = LightState.YELLOW;
}
}
else if (lightVal == LightState.YELLOW) {
System.out.print("Yellow light ");
userCmd = scnr.next();
if (userCmd.equals("n")) { // Next
lightVal = LightState.RED;
}
}
else if (lightVal == LightState.RED) {
System.out.print("Red light ");
userCmd = scnr.next();
if (userCmd.equals("n")) { // Next
lightVal = LightState.GREEN;
}
}
if (userCmd.equals("r")) { // Force immediate red
lightVal = LightState.RED;
}
else if (userCmd.equals("q")) { // Quit
lightVal = LightState.DONE;
}
}
System.out.println("Quit program.");
}
}