add a sentinel command to stop the loop. When the program is compiled, It'll ask the user to type in a palindrome. I want the user to type EXIT to end the loop.
#include
#include
#include
using namespace std;
int main(void)
{
char word[81];
do
{
bool palindrome=true;
cout << "Please enter a word" << endl;
cin>>word;
int length = strlen(word);
for (int i=0; i
{
word[i] = toupper(word[i]);
}
int(length/2);
if (length>0)
{
for(int i=0;i<(length);i++)
{
if(word[i]!=word[length-1-i])
palindrome=false;
}
}
if(palindrome==true)
{
cout << "The word is a palindrome" << endl;}else{cout << "The word is not a palindrome" << endl; }}while(word=="END");return(0) ; }