A PHP Error was encountered

Severity: 8192

Message: str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated

Filename: libraries/Filtered_db.php

Line Number: 23

Write a C# Sharp program to check a given array of integers and return true if every 5 that appears in the given array is next to another 5
Q:

Write a C# Sharp program to check a given array of integers and return true if every 5 that appears in the given array is next to another 5

0

Write a C# Sharp program to check a given array of integers and return true if every 5 that appears in the given array is next to another 5

Sample Output:

True
False
True
False

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {               
         Console.WriteLine(test(new[] { 3, 5, 5, 3, 7 })); 
         Console.WriteLine(test(new[] { 3, 5, 5, 4, 1, 5, 7})); 
         Console.WriteLine(test(new[] { 3, 5, 5, 5, 5, 5})); 
         Console.WriteLine(test(new[] { 2, 4, 5, 5, 6, 7, 5})); 
        }               
       static bool test(int[] numbers)
         {
           int arr_len = numbers.Length;
            bool flag = true;

            for (int i = 0; i < arr_len; i++)
            {
                if (numbers[i] == 5)
                {
                    if ((i > 0 && numbers[i - 1] == 5) || (i < arr_len - 1 && numbers[i + 1] == 5)) flag = true;
                    else if (i == arr_len - 1) flag = false;
                    else return false;
                }
            }
            return flag;
         }    
   } 
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now