Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using these three seperate classes with some code already filled in, how would this be achieved: OurStack class: PalindromeChecker class: StackInterface class: A palindrome is
Using these three seperate classes with some code already filled in, how would this be achieved:
OurStack class:
PalindromeChecker class:
StackInterface class:
A palindrome is a string of characters (a word, phrase, or sentence) that is the same regardless of whether you read it forward or backward-assuming that you ignore spaces, punctuation (https://simple.wikipedia.org/wiki/Punctuation. Do not worry about ellipsis, n-dash, and m-dash.), and case. For example, Race car is a palindrome. So is A man, a plan, a canal: Panama. (More palindromes, http://www.palindromelist.net) Write a Java program that uses a stack to test whether an input string is a palindrome. Sample output: Output-CSC220 (run) #2 x run: | Enter a string that you want to check (or enter ! to exit): Ah, Satan sees Natasha! Ah, Satan sees Natasha! IS a palindrome! Enter a string that you want to check (or enter to exit): Amy, must I jujitsu my ma? Amy, must I jujitsu my ma? IS a palindrome! Enter a string that you want to check (or enterto exit): A man, a plan, a canal: Panama. A man, a plan, a canal: Panama. IS a palindrome! Enter a string that you want to check (or enter to exit): Are Mac 'n' Oliver ever evil on cameza? Are Mac 'n' Oliver ever evil on camera? IS a palindrome! Enter a string that you want to check (or enter to exit): CSc220.03 CSC220.03 is NOT a palindrome! Enter a string that you want to check (or enter to exit): ! Done! BUILD SUCCESSPUL (total time: 1 minute 4 seconds)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started