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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!