So how would I be able to check if a String spelled with the first letter moved to the last (like banana -> ananab) is the same as the original word just spelled backwards?
Which language?
Java. I can put in the code I have so far if it'd help.
yes please
do { for (length = word.length() - 1; length >= 0; length--) { oppWord = oppWord + word.charAt(length); } if () oppWord = ""; System.out.println("Please enter the next word: "); word = keyboard.next(); } while (!word.equals("quit")); System.out.println("All done.");
Write a function to reverse the word, and another to make a string by moving first letter to last; let me call them Reverse() and MoveFirst(); now it must be simpler to write the body of the do while loop. Can you take it from here?
in c copy each character to stack and compare each character of string with the elemented popped from stack for starting and ending character write corresponding logic (easy)
Ignore the first letter, and check if the rest of the word is a palindrome.
Join our real-time social learning platform and learn together with your friends!