Question: Problem 3(30 points): A palindrome is a word or phrase that reads the same forward and backward, ignoring blanks and punctuations, and considering uppercase and

Problem 3(30 points): A palindrome is a word or phrase that reads the same forward and backward, ignoring blanks and punctuations, and considering uppercase and lowercase versions of the same letter to be equal. For example, the following are palindromes: warts n straw radar Able was I ere I saw Elba tacocat Write a program named Palindrome.java that will accept a file (file name) from the command argument list and decide whether each line in the file is a palindrome. Then output the string of each line, followed by True if the string is a palindrome and False otherwise. Note: data file palindrome.txt is provided for testing purpose. You may use this file to text your program. Sample output: Able was I ere I saw Elba True warts n straw True This is not a palindrome! False Java False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
