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

  • برمجة سي شارب
  • برمجة

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

الأجوبة

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];
          } 
   }
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...