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: Compute the difference between the largest and smallest values in a given array of integers of length one or more


C# Sharp Basic Algorithm: Exercise-110 with Solution

Write a C# Sharp program to compute the difference between the largest and smallest values in a gvien array of integers of length one or more.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Compute the difference between the largest and smallest values in a gvien array of integers of length one or more.

Sample Solution:-

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {       
         Console.WriteLine("Difference between the largest and smallest values: ");
         Console.WriteLine(test(new[] { 1, 5, 7, 9, 10, 12 })); 
        }           
       static int test(int[] nums)
          {
            int small_num = 0, biggest_num = 0;

            if (nums.Length > 0) small_num = biggest_num = nums[0];

            for (int i = 1; i < nums.Length; i++)
            {
                small_num = Math.Min(small_num, nums[i]);
                biggest_num = Math.Max(biggest_num, nums[i]);
            }

            return biggest_num - small_num;
          }    
   }
}

Sample Output:

Difference between the largest and smallest values: 
11

Flowchart:

C# Sharp: Flowchart: Compute the difference between the largest and smallest values in a gvien array of integers of length one or more.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to count even number of elements in a given array of integers.
Next: Write a C# Sharp program to compute the sum of values in a given array of integers except the number 17. Return 0 if the given array has no integer.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.