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: Find the largest value from first, last, and middle elements of a given array of integers of odd length (at least 1)


C# Sharp Basic Algorithm: Exercise-107 with Solution

Write a C# Sharp program to find the largest value from first, last, and middle elements of a given array of integers of odd length (at least 1).

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Find the largest value from first, last, and middle elements of a given array of integers of odd length (atleast 1).

Sample Solution:-

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {          
            Console.WriteLine(test(new[] {1}));
            Console.WriteLine(test(new[] {1,2,9}));
            Console.WriteLine(test(new[] {1,2,9,3,3}));
            Console.WriteLine(test(new[] {1,2,3,4,5,6,7}));
            Console.WriteLine(test(new[] {1,2,2,3,7,8,9,10,6,5,4}));
          
        }        
       static int test(int[] numbers)
          {
            int first, middle_ele, last_ele, max_ele;

            first = numbers[0];
            middle_ele = numbers[numbers.Length / 2];
            last_ele = numbers[numbers.Length - 1];
            max_ele = first;

            if (middle_ele > max_ele)
            {
                max_ele = middle_ele;
            }

            if (last_ele > max_ele)
            {
                max_ele = last_ele;
            }

            return max_ele;
        }
   }
}

Sample Output:

1
9
9
7
8

Flowchart:

C# Sharp: Flowchart: Find the largest value from first, last, and middle elements of a given array of integers of odd length (atleast 1).

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to create a new array length 4 from a given array (length atleast 4) containing the elements from the middle of the array.
Next: Write a C# Sharp program to create a new array taking the first two elements from a given array. If the length of the given array is less than 2 then return the give array.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.