Ask your own question, for FREE!
Computer Science 24 Online
OpenStudy (anonymous):

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?

OpenStudy (anonymous):

Which language?

OpenStudy (anonymous):

Java. I can put in the code I have so far if it'd help.

OpenStudy (anonymous):

yes please

OpenStudy (anonymous):

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.");

OpenStudy (anonymous):

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?

OpenStudy (anonymous):

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)

OpenStudy (rsmith6559):

Ignore the first letter, and check if the rest of the word is a palindrome.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!