Should be 1’ on each side
Answer:
this is wot u get for not paying attiention on class
Explanation:
if its the same chart im looking at on this page, the answer is john.
Answer:
Explanation:
bool isPalindrome(string str)
{
int length = str.length();
for (int i = 0; i < length / 2; i++) {
if (str [i] != str [length – 1 – i]) {
return false;
}
}
cout << str << "is a palindrome";
return true;
}