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# Sharp Basic Algorithm Exercises: Create a new string made of every other character starting with the first from a given string


C# Sharp Basic Algorithm: Exercise-29 with Solution

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

Pictorial Presentation:

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

Sample Solution:-

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(test("Python"));
            Console.WriteLine(test("PHP"));
            Console.WriteLine(test("JS"));
            Console.ReadLine();
        }      
        public static string test(string s)
        {
           var result = string.Empty;
            for (var i = 0; i < s.Length; i++)
             {
                 if (i % 2 == 0) result += s[i];
             }
            return result;
        }
   }
}

Sample Output:

Pto
PP
J

Flowchart:

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

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

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

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.