CJCoding With Joseph

Traffic Light Response (Input)

Read a word color from standard input (one of red, yellow, or green). Print the correct action using an if / else-if / else chain: red prints Stop, yellow prints Slow down, and any other value (green) prints Go.

For the input red the output is:

Stop

Expected Output:

Stop
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
red\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.