Gahh I can't figure this out. I really just need help getting started.Thanks in advance if anyone can give me some tips where to start.
Write a program that will check if a word or a sentence is a palindrome. A palindrome is a word (or sentence) that is the same when read front to back and back to front.
In order to verify that a word is a palindrome it needs to be reversed and then compared to the original. If both are the same, then we can conclude it is a palindrome. Sentences need a bit more processing. All spaces, punctuation
marks have to be first removed from the sentence. Then in both word and sentence case we need to lower case all letters. Then sentence needs to be reversed and compared to the original compressed sentence.
Basically what I need to use is a do while loop with two more loops inside of it.