Question
A designer is trying to create a new pattern of five stripes using three colors. These colors and their codes are mentioned in the table
A designer is trying to create a new pattern of five stripes using three colors. These colors and their codes are mentioned in the table below. Color Character Code Red R Green G Blue B The designer has to keep in mind that no two adjacent stripes are of the same color. For example, RRGBR is an invalid pattern, but RGBRB is valid. Write a program that accepts a sequence of five colors as input from the designer to form the pattern. At each selection the designer makes, the program should check if the input is from among the available set of colors. Also, the program should check that adjacent colors are not the same. In the end, the program should display the final stripe pattern created.
public class Colors { public static void main(String[] args) { Scanner scannerobject = new Scanner(System.in); System.out.println("Enter your Input. "); String color; int counter = do { color = scannerobject.next(); System.out.println("Your selection is :" + color); %3D counter++; } while (counter < 5); scannerobject.close(); }
Step by Step Solution
3.31 Rating (151 Votes )
There are 3 Steps involved in it
Step: 1
Comments given inline for easy code assimilation import javautilScanner Holds the designer pattern ...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started