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 Exercises: Check if the first or the last element of the two arrays are equal

C# Sharp Basic: Exercise-49 with Solution

Write a C# program to check if the first element or the last element of the two arrays ( length 1 or more) are equal.

Pictorial Presentation:

>C# Sharp Exercises: Check if the first or the last element of the two arrays are equal

Sample Solution:

C# Sharp Code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class Exercise49
{  
    public static void Main() 
  {
            int[] nums1 = {1, 2, 2, 3, 3, 4, 5, 6, 5, 7, 7, 7, 8, 8, 1};
            Console.WriteLine("\nArray1: [{0}]", string.Join(", ", nums1));
            int[] nums2 = {1, 2, 2, 3, 3, 4, 5, 6, 5, 7, 7, 7, 8, 8, 5};
            Console.WriteLine("\nArray2: [{0}]", string.Join(", ", nums2));
            
            Console.WriteLine("\nCheck if the first element or the last element of the two arrays ( length 1 or more) are equal.");
            Console.WriteLine((nums1[0].Equals(nums2[0])) || (nums1[nums1.Length - 1].Equals(nums2[nums2.Length - 1])));
    } 
}

Sample Output:

Array1: [1, 2, 2, 3, 3, 4, 5, 6, 5, 7, 7, 7, 8, 8, 1]                  
                                                                       
Array2: [1, 2, 2, 3, 3, 4, 5, 6, 5, 7, 7, 7, 8, 8, 5]                  
                                                                       
Check if the first element or the last element of the two arrays ( leng
th 1 or more) are equal.                                               
True

Flowchart:

Flowchart: C# Sharp Exercises - Check if the first  or the last element of the two arrays are equal

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to check if the first element and the last element are equal of an array of integers and the length is 1 or more.
Next: Write a C# program to rotate the elements an array (length 3) of integers in left direction.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.