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: Get the larger value between first and last element of an array of integers

C# Sharp Basic: Exercise-51 with Solution

Write a C# program to get the larger value between first and last element of an array (length 3) of integers.

Pictorial Presentation:

>C# Sharp Exercises: Get the larger value between first and last element of an array of integers

Sample Solution:

C# Sharp Code:

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

public class Exercise51
{  
   public static void Main() 
      {
         int[] nums = {1, 2, 5, 7,  8};
         Console.WriteLine("\nArray1: [{0}]", string.Join(", ", nums));
         var h_val = nums[0];
            for (var i = 0; i < nums.Length; i++)
            {
                if (nums[i] > nums[0])
                    h_val = nums[i];
            }
            Console.WriteLine("\nHighest value between first and last values of the said array: {0}", h_val);
         
    } 
}

Sample Output:

Array1: [1, 2, 5, 7, 8]                                                
                                                                       
Highest value between first and last values of the said array: 8

Flowchart:

Flowchart: C# Sharp Exercises - Get the larger value between first and last element of an array of integers

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# program to rotate the elements an array (length 3) of integers in left direction.
Next: Write a C# program to create an new array, containing the middle elements of three arrays (each length 3) of integers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.