Question: Code starts with this //Instantiate new scanner to read from the console. Scanner in = new Scanner( System.in ); //Declare & initialize variables final int
Code starts with this
//Instantiate new scanner to read from the console. Scanner in = new Scanner( System.in ); //Declare & initialize variables final int NUMBER_WORDS = in.nextInt(); String[] wordList = new String[NUMBER_WORDS]; for (int i=0; i Instructions You will be given an integer n that represents the number of words to follow. You are to check if the sequence of words are the same forward as backwards. Details Input Input has been handled for you: Processing Decide if the sequence of words is the same forward as backwards. Output If the words are the same forward as backward, output: The words are the same forward as backward. Otherwise, output: The words are NOT the same forward as backward. Sample input/output: The words are the same forward as backward. The words are NOT the same forward as backward.
Sample Input Sample Output hello world hello hello great world
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
