CJCoding With Joseph

Traffic Light Class

Create a class TrafficLight that starts on Green. A Next() method advances the light in the cycle Green -> Yellow -> Red -> Green, and a Color() method returns the current color. Do not write a Main method.

Starting on Green and calling Next() once, the program prints:
Yellow

Expected Output:

Yellow
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.