w3resource

C++ Exercises: Create a new string made of every other character starting with the first from a given string

C++ Basic Algorithm: Exercise-28 with Solution

String with Every Other Character

Write a C++ program to create another string made of every other character starting with the first from a given string.

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

// Function to extract characters from the string at even positions
string test(string s)
{
    string result = " "; // Initialize an empty string 'result'

    // Loop through the characters of the input string 's'
    for (int i = 0; i < s.length(); i++)
    {
        // Check if the current index 'i' is even
        if (i % 2 == 0)
            result += s[i]; // Append the character at even positions to 'result'
    }

    return result; // Return the resultant string 'result'
}

// Main function
int main() 
{
    // Output the results of the test function with different input strings
    cout << test("Python") << endl;  // Output: Pto (characters at even positions: P, t, o)
    cout << test("PHP") << endl;  // Output: PP (characters at even positions: P, P)
    cout << test("JS") << endl;  // Output: J (characters at even positions: J)

    return 0; // Return 0 to indicate successful completion
}

Sample Output:

Pto
PP
J

Visual Presentation:

C++ Basic Algorithm Exercises: Create a new string made of every other character starting with the first from a given string.

Flowchart:

Flowchart: Create a new string made of every other character starting with the first from a given string.

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to check if the first appearance of "a" in a given string is immediately followed by another "a".
Next: Write a C++ program to create a string like "aababcabcd" from a given string "abcd".

What is the difficulty level of this exercise?



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://www.w3resource.com/cpp-exercises/basic-algorithm/cpp-basic-algorithm-exercise-28.php