Question: In Microsoft Visual Studio 2015, & using C# Programming, how would you code the following in the simplest way possible? A palindrome is a word
A palindrome is a word or phrase that reads the same forwards and backwards, character for character, disregarding case, spaces, and punctuation (any non-alphabetic characters). Some examples are "racecar", "Madam, I'm Adam.", and Was it a cat I saw?" For this homework assignment, I want you to write a program that allows the user to input a word or phrase and then determines if it is a palindrome. The program should use one method (CharacterStrip) to strip out non-alphabetic characters, and another Boolean-valued method (IsPalindrome) that returns the value True when the word or phrase is a palindrome and the value False otherwise. I'll leave the interface design up to you
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
