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 sum of the two given arrays of integers, length 3 and find the array which has the largest sum


C# Sharp Basic Algorithm: Exercise-102 with Solution

Write a C# Sharp program to compute the sum of the two given arrays of integers, length 3 and find the array which has the largest sum.

Pictorial Presentation:

C# Sharp: Basic Algorithm Exercises - Compute the sum of the two given arrays of integers,length 3 and find the array which has the largest sum.

Sample Solution:-

C# Sharp Code:

using System;
namespace exercises
{
   class Program
    {       
        static void Main(string[] args)
        {         
          int[] item =  test(new[] { 10, 20, -30 }, new[] { 10, 20, 30 });       
           Console.Write("Larger array: ");         
           foreach(var i in item)
            {
               Console.Write(i.ToString()+" ");
            }
         }        
       public static int[]  test(int[] nums1, int [] nums2)
          {
              return nums1[0] + nums1[1] + nums1[2] >= nums2[0] + nums2[1] + nums2[2] ? nums1 : nums2;
          } 
   }
} 

Sample Output:

Larger array: 10 20 30

Flowchart:

C# Sharp: Flowchart: Compute the sum of the two given arrays of integers,length 3 and find the array which has the largest sum.

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a C# Sharp program to check a given array of integers, length 3 and create a new array. If there is a 5 in the given array immediately followed by a 7 then set 7 to 1.
Next: Write a C# Sharp program to create an array taking two middle elements from a given array of integers of length even.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.