Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Visual Basic 4 Ole Database And Controls Superbible

Authors: Michael Hatmaker, C. Woody Butler, Ibrahim Malluf, Bill Potter

1st Edition

1571690077, 978-1571690074

More Books

Students also viewed these Databases questions

Question

When should you avoid using exhaust brake select all that apply

Answered: 1 week ago