Question
write a loop that processes a string and returns true if the string is a palindrome and false if it is not. A String is
write a loop that processes a string and returns true if the string is a palindrome and false if it is not. A String is a palindrome if it is spelled the same forward as it is backward. For example, the words joe, age, pokemon, b, kayak and racecar are all palindromes.
C++
I wrote a sample but not compiling...
#include"stdafx.h"
#include
#include
int main()
{
Int x = 0;
Int y= 0;
string word = racecar
x= 0;
y= word.length() -1;
while (x
if( word[x] != word [y]) (
cout<< Not a Palindrome! << endl;
return 0;
}
y++;
y--;
}
cout<< Yes a palindrome << endl;
return 0; }
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