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: Compute sum of all the elements of an array of integers

C# Sharp Basic: Exercise-47 with Solution

Write a C# program to compute sum of all the elements of an array of integers.

Pictorial Presentation:

>C# Sharp Exercises: Compute  sum of all the elements 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 Exercise47
{  
   public static void Main() 
      {
         int[] nums = {1, 2, 2, 3, 3, 4, 5, 6, 5, 7, 7, 7, 8, 8, 1};
         Console.WriteLine("\nArray1: [{0}]", string.Join(", ", nums));
         var sum = 0;
            for (var i = 0; i < nums.Length; i++)
            {
                sum += nums[i];
            }
           Console.WriteLine("Sum: "+ sum);
    } 
}

Sample Output:

Array1: [1, 2, 2, 3, 3, 4, 5, 6, 5, 7, 7, 7, 8, 8, 1]                  
Sum: 69

Flowchart:

Flowchart: C# Sharp Exercises - Compute  sum of all the elements 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 check if a number appears as either the first or last element of an array of integers and the length is 1 or more.
Next: 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.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.