VOOZH about

URL: https://www.geeksforgeeks.org/go-language/how-to-calculate-the-average-using-arrays-in-golang/

⇱ How to Calculate the Average using Arrays in Golang? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Calculate the Average using Arrays in Golang?

Last Updated : 12 Jul, 2025

Given an array of n elements, your task is to find out the average of the array.
Approach: 

  • Accept the size of the array.
  • Accept the elements of the array.
  • Store the sum of the elements using for loop.
  • Calculate Average = (sum/size of array)
  • Print the average.


Example: 

Input:

n = 4
array = 1, 2, 3, 4

Output :

sum = 10
average = 2.5


 

Output 

Sum = 10 
Average = 2.5


Here, n is the size of the array and sum is to store the sum of all the values of the array. Using a for loop we get the sum of the elements of the array. After calculating the sum, we must convert the data types of the sum and size of the array to float, so that we don't lose any decimal values.
To know more approaches you can go through the article Program for the average of an array (Iterative and Recursive)

Comment
Article Tags:

Explore