Q:

Write a C# Sharp program to check two given arrays of integers of length 1 or more and return true if they have the same first element or they have the same last element

0

Write a C# Sharp program to check two given arrays of integers of length 1 or more and return true if they have the same first element or they have the same last element

Sample Output:

True
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[] { 10, 20, 40, 50 }, new[] { 10, 20, 40, 50 }));
            Console.WriteLine(test(new[] { 10, 20, 40, 50 }, new[] { 10, 20, 40, 5 }));
            Console.WriteLine(test(new[] { 10, 20, 40, 50 }, new[] { 1, 20, 40, 5 }));
            Console.ReadLine();
        }
    public static bool test(int[] a1, int[] a2)
          {
           return a1[0] == a2[0] || a1[a1.Length - 1] == a2[a2.Length - 1];
          } 
   }
}

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