Question: Reimplement the TrafficLight class using a simple counter that is advanced in each call to next. If the traffic light was initially green, the counter
Reimplement the TrafficLight class using a simple counter that is advanced in each call to next. If the traffic light was initially green, the counter has values dots. If the traffic light was initially red, the counter has values dots. Compute the current color and the number of reds, using integer division and remainder.
TrafficLightTester.java
A simulated traffic light.
public class Trafficlight
private int steps;
Constructs a green traffic light.
public TrafficLight
Your code goes here
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
