挑战
将彩虹视为七种颜色,以字符串表示Red Orange Yellow Green Blue Indigo Violet
。
您的任务是创建一个程序,以接收这些颜色之一作为输入,然后依次输出彩虹色。这包括重叠Violet -> Red
输入值
包含一种彩虹色的字符串。
输出量
接下来是彩虹的颜色。
规则
- 颜色名称区分大小写。它们必须匹配此帖子中包含的大小写。
- 输入将始终有效。对于无效输入,允许任何行为。
- 这是代码高尔夫球,因此最短的字节数将获胜!
输入和输出示例
Input -> Output
Red -> Orange
Orange -> Yellow
Yellow -> Green
Green -> Blue
Blue -> Indigo
Indigo -> Violet
Violet -> Red
Provide at least one example input and output. Make sure they match your own description of what the input should look like.