Final answer:
To complete this palindrome program in Java, you will need to create a method called isPalindrome() that checks whether a given string is a palindrome or not.
Step-by-step explanation:
Palindrome Program in Java
To complete this program, you will need to implement the following steps:
- Create a method called isPalindrome() that takes a string as input and returns a boolean value.
- In the isPalindrome() method, convert the string to lowercase, remove spaces, and check if it is equal to its reverse.
- In the main program, prompt the user for the number of strings 'N' and then accept 'N' strings from the user.
- Iteratively call the isPalindrome() method for each input string and print out the palindromes in a single line, separated by a ';'.
- Print the result as per the provided sample run.
Here's a sample implementation of the isPalindrome() method in Java:
public static boolean isPalindrome(String input) {
String cleanedInput = input.toLowerCase().replaceAll("\\s+", "");
String reversedInput = new StringBuilder(cleanedInput).reverse().toString();
return cleanedInput.equals(reversedInput);
}