Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
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

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

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

string test(string s)
        {
           string result = " ";
            for (int i = 0; i < s.length(); i++)
             {
                 if (i % 2 == 0) result += s[i];
             }
            return result;
        }
        
int main() 
 {
  cout << test("Python") << endl;  
  cout << test("PHP") << endl;  
  cout << test("JS") << endl;  
  return 0;    
}

Sample Output:

Pto
PP
J

Pictorial 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?