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: Function: Calculate the sum of the elements in an array

C# Sharp Function: Exercise-5 with Solution

Write a program in C# Sharp to calculate the sum of elements in an array.

Pictorial Presentation:

C# Sharp Exercises: Function: Calculate the sum of the elements in an array

Sample Solution:

C# Sharp Code:

using System;
public class funcexer5
  {
    public static int Sum(int[] arr1)
    {
        int tot=0;
        for (int i = 0;i < arr1.Length; i++)
        tot += arr1[i];
        return tot;
    }
    public static void Main()
    {
       int[] arr1 = new int[5];
       Console.Write("\n\nFunction : Calculate the sum of the elements in an array :\n");  
       Console.Write("--------------------------------------------------------------\n");      
    
       Console.Write("Input 5 elements in the array :\n");    
       for(int j=0; j<5; j++)    
       {    
        Console.Write("element - {0} : ",j);  
        arr1[j] = Convert.ToInt32(Console.ReadLine());         
       }    
       Console.WriteLine("The sum of the elements of the array is {0}", Sum(arr1));
    }
}

Sample Output:

Function : Calculate the sum of the elements in an array :                                                    
--------------------------------------------------------------                                                
Input 5 elements in the array :                                                                               
element - 0 : 1                                                                                               
element - 1 : 2                                                                                               
element - 2 : 3                                                                                               
element - 3 : 4                                                                                               
element - 4 : 5                                                                                               
The sum of the elements of the array is 15 

Flowchart:

Flowchart: C# Sharp Exercises - Function: Calculate the sum of the elements in an array

C# Sharp Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a program in C# Sharp to create a function to input a string and count number of spaces are in the string.
Next: Write a program in C# Sharp to create a function to swap the values of two integer numbers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.