w3resource

C#: Check a given array of integers, length 3 and create a new array


C# Sharp Basic Algorithm: Exercise-101 with Solution

Write a C# Sharp program to check a given array of integers length 3 and create a array. If there is a 5 in the given array immediately followed by a 7 then set 7 to 1.

Visual Presentation:

C# Sharp: Basic Algorithm Exercises - Check a given array of integers, length 3 and create a new array

Sample Solution:-

C# Sharp Code:

using System; // Importing the System namespace

namespace exercises // Defining a namespace called 'exercises'
{
    class Program // Defining a class named 'Program'
    {
        static void Main(string[] args) // The entry point of the program
        {          
            // Calling the 'test' method with an integer array as an argument and assigning the result to the 'item' array
            int[] item = test(new[] { 1, 5, 7 }); 

            // Outputting text to indicate the start of displaying the new array
            Console.Write("New array: ");

            // Looping through each element of the 'item' array and displaying them
            foreach(var i in item)
            {
                Console.Write(i.ToString()+" "); // Displaying each element of the 'item' array separated by a space
            }               
        }        

        // Method to replace the element following 5 with 1, if 5 is followed by 7 in the input array
        static int[] test(int[] numbers)
        {
            for (var i = 0; i < numbers.Length - 1; i++)
            {
                if (numbers[i].Equals(5) && numbers[i + 1].Equals(7))
                    numbers[i + 1] = 1; // If 5 is followed by 7, replace the following element with 1
            }
            return numbers; // Returning the modified array
        } 
    }
}

Sample Output:

New array: 1 5 1

Flowchart:

C# Sharp: Flowchart: Check a given array of integers, length 3 and create a new array.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to check a given array of integers and return true if the array conains 10 or 20 twice. The length of the array will be 0, 1, or 2.
Next: Write a C# Sharp program to compute the sum of the two given arrays of integers, length 3 and find the array which has the largest sum.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.