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: Return true if there are two values 15, 15 next to each other in an array


C# Sharp Basic Algorithm: Exercise-134 with Solution

Write a C# Sharp program to check a given array (length will be at least 2) of integers and return true if there are two values 15, 15 next to each other.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Check a given array (length will be atleast 2) of integers and return true if there are two values 15, 15 next to each others.

Sample Solution:

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {               
         Console.WriteLine(test(new[] { 5, 5, 1, 15, 15 })); 
         Console.WriteLine(test(new[] { 15, 2, 3, 4, 15 })); 
         Console.WriteLine(test(new[] { 3, 3, 15, 15, 5, 5})); 
         Console.WriteLine(test(new[] { 1, 5, 15, 7, 8, 15})); 
          }               
        static bool test(int[] numbers)
         {
         for (int i = 0; i < numbers.Length - 1; i++)
            {
                if (numbers[i + 1] == numbers[i] && numbers[i] == 15) return true;
            }
            return false;
         }
    
    } 
}

Sample Output:

True
False
True
False

Flowchart:

C# Sharp: Flowchart: Check a given array (length will be atleast 2) of integers and return true if there are two values 15, 15 next to each other.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to check if the value of each element is equal or greater than the value of previous element of a given array of integers.
Next: Write a C# Sharp program to find the larger average value between the first and the second half of a given array of integers and minimum length is atleast 2. assume that the second half begins at index (array length)/2.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.