
Here are my instructions for my C++ program:
Write a program that uses the
function isPalindrome given in
Example 6-6 (Palindrome). Test
your program on the following
strings:
madam, abba, 22, 67876, 444244, trymeuemyrt
Modify the function isPalindrome
of Example 6-6 so that when
determining whether a string is a
palindrome, cases are ignored, that
is, uppercase and lowercase letters
are considered the same.
The isPalindrome function from
Example 6-6 has been included
below for your convenience.
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;
} // if
} // for loop
return true;
}// isPalindrome
Your program should print a
message indicating if a string is a
palindrome:
madam is a palindrome
The lab values require that I have the following string patterns in my lab:
.+*isPalindrome\(\"Madam\"\).+*
.+*isPalindrome\(\"abBa\"\).+*
.+*isPalindrome\(\"22\"\).+*
.+*isPalindrome\(\"67876\"\).+*
.+*isPalindrome\(\"444244\"\).+*
.+*isPalindrome\(\"trYmeuemyRT\"\).+*



Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 4 images

Your output was correct
The lab values require that I have the following string patterns in my lab:
Description
Searched your code for a specific pattern:
.+*isPalindrome\(\"Madam\"\).+*
.+*isPalindrome\(\"Madam\"\).+*
.+*isPalindrome\(\"abBa\"\).+*
.+*isPalindrome\(\"22\"\).+*
.+*isPalindrome\(\"67876\"\).+*
.+*isPalindrome\(\"444244\"\).+*
.+*isPalindrome\(\"trYmeuemyRT\"\).+*


Your output was correct
The lab values require that I have the following string patterns in my lab:
Description
Searched your code for a specific pattern:
.+*isPalindrome\(\"Madam\"\).+*
.+*isPalindrome\(\"Madam\"\).+*
.+*isPalindrome\(\"abBa\"\).+*
.+*isPalindrome\(\"22\"\).+*
.+*isPalindrome\(\"67876\"\).+*
.+*isPalindrome\(\"444244\"\).+*
.+*isPalindrome\(\"trYmeuemyRT\"\).+*


- With the aid of c++, code a function which does the task listed below. i.Being able to do a reversement of the content of string S and also store it in string Rev.arrow_forwardWrite a c++ code. Write a recursive function, vowelsCount that returns the number of vowels in a string. Output must needed.arrow_forwardC++ Need help with the functions While testing I am not getting the count for the vowles and consontants. Please jelp and test each option. Write a function that accepts a C-string as its argument. The function should count the number of vowels appearing in the string and return that number. Write another function that accepts a C-string as its argument. This function should count the number of consonants appearing in the string and return that number.Demonstrate the two functions in a program that performs the following steps:1. The user is asked to enter a string.2. The program displays the following menu: A) Count the number of vowels in the string B) Count the number of consonants in the string C) Count both the vowels and consonants in the string D) Enter another string E) Exit the program3. The program performs the operation selected by the user and repeats until the user selects E, to exit the program. // Sharissa Sullivan //Febuary 2 2023// Chapter 10 Vowels and…arrow_forward
- Write a function in JAVA language that accepts three integer parameters and returns true if two or more of them (integers) have the same rightmost digit. The integers are non-negative. Inside the main function test the function for at least two test cases.arrow_forwardDo asap please.arrow_forwardThanks for the help, but I'm not finished yet. Here are my instructions for my C++ program: Write a program that uses the function isPalindrome given in Example 6-6 (Palindrome). Test your program on the following strings:madam, abba, 22, 67876, 444244, trymeuemyrt Modify the function isPalindrome of Example 6-6 so that when determining whether a string is a palindrome, cases are ignored, that is, uppercase and lowercase letters are considered the same. The isPalindrome function from Example 6-6 has been included below for your convenience. 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;} // if } // for loopreturn true;}// isPalindrome Your program should print a message indicating if a string is a palindrome: madam is a palindrome Here's what I have so far: //Include the neccessary header files.#include <iostream>#include <string.h>#include <algorithm> //Declare the…arrow_forward
- How to write a function in python that takes a string s = kkeeepinng and returns the non-repeating character from strrint s. Such that the output should be as follows: p i garrow_forwardI have a syntax error with my program code. Can someone help me? Here's the instructions for my C++ program: Instructions Write a program that uses the function isPalindrome given in Example 6-6 (Palindrome). Test your program on the following strings:madam, abba, 22, 67876, 444244, trymeuemyrt Modify the function isPalindrome of Example 6-6 so that when determining whether a string is a palindrome, cases are ignored, that is, uppercase and lowercase letters are considered the same. The isPalindrome function from Example 6-6 has been included below for your convenience. 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;} // if } // for loopreturn true;}// isPalindrome Your program should print a message indicating if a string is a palindrome: madam is a palindrome Here's what I have so far: #include <iostream>#include <string.h> using namespace std; //My user defined function…arrow_forwardWrite the full C++ code for main.cpp, mystring.h, and mystring.cpparrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





